⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iscsi-probe.h

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 H
字号:
#ifndef ISCSI_PROBE_H_#define ISCSI_PROBE_H_/* * iSCSI driver for Linux * Copyright (C) 2001 Cisco Systems, Inc. * maintained by linux-iscsi@cisco.com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published * by the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * See the file COPYING included with this distribution for more details. * * $Id: iscsi-probe.h,v 1.1 2002/04/16 18:52:19 smferris Exp $ * * iscsi-probe.h * *    include for iSCSI kernel module LUN probing *  *//* various ioctls need these */extern void iscsi_detect_luns(iscsi_session_t *session);extern void iscsi_probe_luns(iscsi_session_t *session, uint32_t *lun_bitmap, scsi_device_info_t *device_info);extern void iscsi_remove_luns(iscsi_session_t *session);extern int  iscsi_reset_lun_probing(void);/* we check the done function on commands to distinguish commands created by the driver itself */extern void iscsi_done(Scsi_Cmnd *sc);/* timer needs these to know when to start lun probing */extern void iscsi_possibly_start_lun_probing(void);extern volatile unsigned long  iscsi_lun_probe_start;#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -