mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
66cd9d4ef7
The structure iscsi_cmd naming is used by the iSCSI initiator driver. Rename the target cmd to iscsit_cmd to have more readable code. Link: https://lore.kernel.org/r/20220428092939.36768-1-mgurtovoy@nvidia.com Reviewed-by: Mike Christie <michael.christie@oracle.com> Signed-off-by: Max Gurtovoy <mgurtovoy@nvidia.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
17 lines
683 B
C
17 lines
683 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ISCSI_TARGET_DATAIN_VALUES_H
|
|
#define ISCSI_TARGET_DATAIN_VALUES_H
|
|
|
|
struct iscsit_cmd;
|
|
struct iscsi_datain;
|
|
|
|
extern struct iscsi_datain_req *iscsit_allocate_datain_req(void);
|
|
extern void iscsit_attach_datain_req(struct iscsit_cmd *, struct iscsi_datain_req *);
|
|
extern void iscsit_free_datain_req(struct iscsit_cmd *, struct iscsi_datain_req *);
|
|
extern void iscsit_free_all_datain_reqs(struct iscsit_cmd *);
|
|
extern struct iscsi_datain_req *iscsit_get_datain_req(struct iscsit_cmd *);
|
|
extern struct iscsi_datain_req *iscsit_get_datain_values(struct iscsit_cmd *,
|
|
struct iscsi_datain *);
|
|
|
|
#endif /*** ISCSI_TARGET_DATAIN_VALUES_H ***/
|