mirror of
https://github.com/torvalds/linux.git
synced 2024-12-02 17:11:33 +00: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>
23 lines
951 B
C
23 lines
951 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef ISCSI_TARGET_ERL0_H
|
|
#define ISCSI_TARGET_ERL0_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct iscsit_cmd;
|
|
struct iscsit_conn;
|
|
struct iscsit_session;
|
|
|
|
extern void iscsit_set_dataout_sequence_values(struct iscsit_cmd *);
|
|
extern int iscsit_check_pre_dataout(struct iscsit_cmd *, unsigned char *);
|
|
extern int iscsit_check_post_dataout(struct iscsit_cmd *, unsigned char *, u8);
|
|
extern void iscsit_start_time2retain_handler(struct iscsit_session *);
|
|
extern void iscsit_handle_time2retain_timeout(struct timer_list *t);
|
|
extern int iscsit_stop_time2retain_timer(struct iscsit_session *);
|
|
extern void iscsit_connection_reinstatement_rcfr(struct iscsit_conn *);
|
|
extern void iscsit_cause_connection_reinstatement(struct iscsit_conn *, int);
|
|
extern void iscsit_fall_back_to_erl0(struct iscsit_session *);
|
|
extern void iscsit_take_action_for_connection_exit(struct iscsit_conn *, bool *);
|
|
|
|
#endif /*** ISCSI_TARGET_ERL0_H ***/
|