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 */
|