18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef ISCSI_TARGET_NODEATTRIB_H 38c2ecf20Sopenharmony_ci#define ISCSI_TARGET_NODEATTRIB_H 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#include <linux/types.h> 68c2ecf20Sopenharmony_ci 78c2ecf20Sopenharmony_cistruct iscsi_node_acl; 88c2ecf20Sopenharmony_cistruct iscsi_portal_group; 98c2ecf20Sopenharmony_ci 108c2ecf20Sopenharmony_ciextern void iscsit_set_default_node_attribues(struct iscsi_node_acl *, 118c2ecf20Sopenharmony_ci struct iscsi_portal_group *); 128c2ecf20Sopenharmony_ciextern int iscsit_na_dataout_timeout(struct iscsi_node_acl *, u32); 138c2ecf20Sopenharmony_ciextern int iscsit_na_dataout_timeout_retries(struct iscsi_node_acl *, u32); 148c2ecf20Sopenharmony_ciextern int iscsit_na_nopin_timeout(struct iscsi_node_acl *, u32); 158c2ecf20Sopenharmony_ciextern int iscsit_na_nopin_response_timeout(struct iscsi_node_acl *, u32); 168c2ecf20Sopenharmony_ciextern int iscsit_na_random_datain_pdu_offsets(struct iscsi_node_acl *, u32); 178c2ecf20Sopenharmony_ciextern int iscsit_na_random_datain_seq_offsets(struct iscsi_node_acl *, u32); 188c2ecf20Sopenharmony_ciextern int iscsit_na_random_r2t_offsets(struct iscsi_node_acl *, u32); 198c2ecf20Sopenharmony_ciextern int iscsit_na_default_erl(struct iscsi_node_acl *, u32); 208c2ecf20Sopenharmony_ci 218c2ecf20Sopenharmony_ci#endif /* ISCSI_TARGET_NODEATTRIB_H */ 22