3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-20 22:25:54 +00:00
Brooklyn/drivers/target/iscsi/iscsi_target_device.h

12 lines
328 B
C
Raw Normal View History

2022-04-02 18:17:33 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ISCSI_TARGET_DEVICE_H
#define ISCSI_TARGET_DEVICE_H
2022-09-13 23:21:57 +05:00
struct iscsit_cmd;
struct iscsit_session;
2022-04-02 18:17:33 +05:00
2022-09-13 23:21:57 +05:00
extern void iscsit_determine_maxcmdsn(struct iscsit_session *);
extern void iscsit_increment_maxcmdsn(struct iscsit_cmd *, struct iscsit_session *);
2022-04-02 18:17:33 +05:00
#endif /* ISCSI_TARGET_DEVICE_H */