1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef ISCSI_TARGET_DEVICE_H 3 #define ISCSI_TARGET_DEVICE_H 4 5 struct iscsi_cmd; 6 struct iscsi_session; 7 8 extern void iscsit_determine_maxcmdsn(struct iscsi_session *); 9 extern void iscsit_increment_maxcmdsn(struct iscsi_cmd *, struct iscsi_session *); 10 11 #endif /* ISCSI_TARGET_DEVICE_H */ 12