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>
12 lines
325 B
C
12 lines
325 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ISCSI_TARGET_DEVICE_H
|
|
#define ISCSI_TARGET_DEVICE_H
|
|
|
|
struct iscsit_cmd;
|
|
struct iscsi_session;
|
|
|
|
extern void iscsit_determine_maxcmdsn(struct iscsi_session *);
|
|
extern void iscsit_increment_maxcmdsn(struct iscsit_cmd *, struct iscsi_session *);
|
|
|
|
#endif /* ISCSI_TARGET_DEVICE_H */
|