mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 06:04:14 +08:00
13 lines
598 B
C
13 lines
598 B
C
|
#ifndef ISCSI_TARGET_DATAIN_VALUES_H
|
||
|
#define ISCSI_TARGET_DATAIN_VALUES_H
|
||
|
|
||
|
extern struct iscsi_datain_req *iscsit_allocate_datain_req(void);
|
||
|
extern void iscsit_attach_datain_req(struct iscsi_cmd *, struct iscsi_datain_req *);
|
||
|
extern void iscsit_free_datain_req(struct iscsi_cmd *, struct iscsi_datain_req *);
|
||
|
extern void iscsit_free_all_datain_reqs(struct iscsi_cmd *);
|
||
|
extern struct iscsi_datain_req *iscsit_get_datain_req(struct iscsi_cmd *);
|
||
|
extern struct iscsi_datain_req *iscsit_get_datain_values(struct iscsi_cmd *,
|
||
|
struct iscsi_datain *);
|
||
|
|
||
|
#endif /*** ISCSI_TARGET_DATAIN_VALUES_H ***/
|