root/drivers/target/iscsi/iscsi_target_tmr.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


   1 /* SPDX-License-Identifier: GPL-2.0 */
   2 #ifndef ISCSI_TARGET_TMR_H
   3 #define ISCSI_TARGET_TMR_H
   4 
   5 #include <linux/types.h>
   6 
   7 struct iscsi_cmd;
   8 struct iscsi_conn;
   9 struct iscsi_tmr_req;
  10 
  11 extern u8 iscsit_tmr_abort_task(struct iscsi_cmd *, unsigned char *);
  12 extern int iscsit_tmr_task_warm_reset(struct iscsi_conn *, struct iscsi_tmr_req *,
  13                         unsigned char *);
  14 extern int iscsit_tmr_task_cold_reset(struct iscsi_conn *, struct iscsi_tmr_req *,
  15                         unsigned char *);
  16 extern u8 iscsit_tmr_task_reassign(struct iscsi_cmd *, unsigned char *);
  17 extern int iscsit_tmr_post_handler(struct iscsi_cmd *, struct iscsi_conn *);
  18 extern int iscsit_check_task_reassign_expdatasn(struct iscsi_tmr_req *,
  19                         struct iscsi_conn *);
  20 
  21 #endif /* ISCSI_TARGET_TMR_H */

/* [<][>][^][v][top][bottom][index][help] */