27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef ISCSI_TARGET_ERL2_H
 | |
| #define ISCSI_TARGET_ERL2_H
 | |
| 
 | |
| #include <linux/types.h>
 | |
| 
 | |
| struct iscsi_cmd;
 | |
| struct iscsi_conn;
 | |
| struct iscsi_conn_recovery;
 | |
| struct iscsi_session;
 | |
| 
 | |
| extern void iscsit_create_conn_recovery_datain_values(struct iscsi_cmd *, __be32);
 | |
| extern void iscsit_create_conn_recovery_dataout_values(struct iscsi_cmd *);
 | |
| extern struct iscsi_conn_recovery *iscsit_get_inactive_connection_recovery_entry(
 | |
| 			struct iscsi_session *, u16);
 | |
| extern void iscsit_free_connection_recovery_entires(struct iscsi_session *);
 | |
| extern int iscsit_remove_active_connection_recovery_entry(
 | |
| 			struct iscsi_conn_recovery *, struct iscsi_session *);
 | |
| extern int iscsit_remove_cmd_from_connection_recovery(struct iscsi_cmd *,
 | |
| 			struct iscsi_session *);
 | |
| extern void iscsit_discard_cr_cmds_by_expstatsn(struct iscsi_conn_recovery *, u32);
 | |
| extern int iscsit_discard_unacknowledged_ooo_cmdsns_for_conn(struct iscsi_conn *);
 | |
| extern int iscsit_prepare_cmds_for_reallegiance(struct iscsi_conn *);
 | |
| extern int iscsit_connection_recovery_transport_reset(struct iscsi_conn *);
 | |
| 
 | |
| #endif /*** ISCSI_TARGET_ERL2_H ***/
 | 
