mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 07:19:24 +07:00
8dcf07be2d
Remove superfluous #include directives from the include/target/*.h files. Add missing #include directives to other *.h and *.c files. Use forward declarations for structures where possible. This change reduces the build time for make M=drivers/target on my laptop from 27.1s to 18.7s or by about 30%. Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com> Cc: Christoph Hellwig <hch@lst.de> Cc: Bryant G. Ly <bryantly@linux.vnet.ibm.com>
21 lines
874 B
C
21 lines
874 B
C
#ifndef ISCSI_TARGET_NODEATTRIB_H
|
|
#define ISCSI_TARGET_NODEATTRIB_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct iscsi_node_acl;
|
|
struct iscsi_portal_group;
|
|
|
|
extern void iscsit_set_default_node_attribues(struct iscsi_node_acl *,
|
|
struct iscsi_portal_group *);
|
|
extern int iscsit_na_dataout_timeout(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_dataout_timeout_retries(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_nopin_timeout(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_nopin_response_timeout(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_random_datain_pdu_offsets(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_random_datain_seq_offsets(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_random_r2t_offsets(struct iscsi_node_acl *, u32);
|
|
extern int iscsit_na_default_erl(struct iscsi_node_acl *, u32);
|
|
|
|
#endif /* ISCSI_TARGET_NODEATTRIB_H */
|