Linux Kernel
3.7.1
|
Go to the source code of this file.
Data Structures | |
struct | iscsi_boot_kobj |
struct | iscsi_boot_kset |
Functions | |
struct iscsi_boot_kobj * | iscsi_boot_create_initiator (struct iscsi_boot_kset *boot_kset, int index, void *data, ssize_t(*show)(void *data, int type, char *buf), umode_t(*is_visible)(void *data, int type), void(*release)(void *data)) |
struct iscsi_boot_kobj * | iscsi_boot_create_ethernet (struct iscsi_boot_kset *boot_kset, int index, void *data, ssize_t(*show)(void *data, int type, char *buf), umode_t(*is_visible)(void *data, int type), void(*release)(void *data)) |
struct iscsi_boot_kobj * | iscsi_boot_create_target (struct iscsi_boot_kset *boot_kset, int index, void *data, ssize_t(*show)(void *data, int type, char *buf), umode_t(*is_visible)(void *data, int type), void(*release)(void *data)) |
struct iscsi_boot_kset * | iscsi_boot_create_kset (const char *set_name) |
struct iscsi_boot_kset * | iscsi_boot_create_host_kset (unsigned int hostno) |
void | iscsi_boot_destroy_kset (struct iscsi_boot_kset *boot_kset) |
Definition at line 22 of file iscsi_boot_sysfs.h.
Definition at line 55 of file iscsi_boot_sysfs.h.
Definition at line 39 of file iscsi_boot_sysfs.h.
|
read |
iscsi_boot_create_ethernet() - create boot ethernet sysfs dir : boot kset : the ethernet device id : driver specific data : attr show function : attr visibility function : release function
Note: The boot sysfs lib will free the data passed in for the caller when all refs to the ethernet kobject have been released.
Definition at line 420 of file iscsi_boot_sysfs.c.
|
read |
iscsi_boot_create_host_kset() - creates root sysfs tree for a scsi host : host number of scsi host
Definition at line 460 of file iscsi_boot_sysfs.c.
|
read |
iscsi_boot_create_initiator() - create boot initiator sysfs dir : boot kset : the initiator id : driver specific data : attr show function : attr visibility function : release function
Note: The boot sysfs lib will free the data passed in for the caller when all refs to the initiator kobject have been released.
Definition at line 394 of file iscsi_boot_sysfs.c.
|
read |
iscsi_boot_create_kset() - creates root sysfs tree : name of root dir
Definition at line 437 of file iscsi_boot_sysfs.c.
|
read |
iscsi_boot_create_target() - create boot target sysfs dir : boot kset : the target id : driver specific data for target : attr show function : attr visibility function : release function
Note: The boot sysfs lib will free the data passed in for the caller when all refs to the target kobject have been released.
Definition at line 369 of file iscsi_boot_sysfs.c.
void iscsi_boot_destroy_kset | ( | struct iscsi_boot_kset * | boot_kset | ) |
iscsi_boot_destroy_kset() - destroy kset and kobjects under it : boot kset
This will remove the kset and kobjects and attrs under it.
Definition at line 481 of file iscsi_boot_sysfs.c.