mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-24 20:54:10 +08:00
0873fe44e7
The structure iscsi_session naming is used by the iSCSI initiator driver. Rename the target session to iscsit_session to have more readable code. Link: https://lore.kernel.org/r/20220428092939.36768-3-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
328 B
C
12 lines
328 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ISCSI_TARGET_DEVICE_H
|
|
#define ISCSI_TARGET_DEVICE_H
|
|
|
|
struct iscsit_cmd;
|
|
struct iscsit_session;
|
|
|
|
extern void iscsit_determine_maxcmdsn(struct iscsit_session *);
|
|
extern void iscsit_increment_maxcmdsn(struct iscsit_cmd *, struct iscsit_session *);
|
|
|
|
#endif /* ISCSI_TARGET_DEVICE_H */
|