|
@@ -269,6 +269,21 @@ extern const u32 nfs41_maxgetdevinfo_overhead;
|
|
|
extern struct rpc_procinfo nfs4_procedures[];
|
|
|
#endif
|
|
|
|
|
|
+#ifdef CONFIG_NFS_V4_SECURITY_LABEL
|
|
|
+extern struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags);
|
|
|
+static inline void nfs4_label_free(struct nfs4_label *label)
|
|
|
+{
|
|
|
+ if (label) {
|
|
|
+ kfree(label->label);
|
|
|
+ kfree(label);
|
|
|
+ }
|
|
|
+ return;
|
|
|
+}
|
|
|
+#else
|
|
|
+static inline struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags) { return NULL; }
|
|
|
+static inline void nfs4_label_free(void *label) {}
|
|
|
+#endif /* CONFIG_NFS_V4_SECURITY_LABEL */
|
|
|
+
|
|
|
/* proc.c */
|
|
|
void nfs_close_context(struct nfs_open_context *ctx, int is_sync);
|
|
|
extern struct nfs_client *nfs_init_client(struct nfs_client *clp,
|