2026-01-21 18:59:54 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
#ifndef ISCSI_TARGET_DEVICE_H
|
|
|
|
|
#define ISCSI_TARGET_DEVICE_H
|
|
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
struct iscsit_cmd;
|
|
|
|
|
struct iscsit_session;
|
2026-01-21 18:59:54 +08:00
|
|
|
|
2026-01-29 22:25:33 +08:00
|
|
|
extern void iscsit_determine_maxcmdsn(struct iscsit_session *);
|
|
|
|
|
extern void iscsit_increment_maxcmdsn(struct iscsit_cmd *, struct iscsit_session *);
|
2026-01-21 18:59:54 +08:00
|
|
|
|
|
|
|
|
#endif /* ISCSI_TARGET_DEVICE_H */
|