]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
nfsd4: fix missing "static"
authorJ. Bruce Fields <bfields@redhat.com>
Wed, 25 Apr 2012 20:56:22 +0000 (16:56 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Fri, 1 Jun 2012 00:29:35 +0000 (20:29 -0400)
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/export.c
fs/nfsd/nfs4recover.c
fs/nfsd/nfs4state.c
fs/nfsd/nfs4xdr.c

index dcb52b8845194db72aa37bb05f5f4ea2d49b9691..ec16364f782efb74001fbfff4eabbe0e80314729 100644 (file)
@@ -706,7 +706,7 @@ static struct cache_head *svc_export_alloc(void)
                return NULL;
 }
 
-struct cache_detail svc_export_cache_template = {
+static struct cache_detail svc_export_cache_template = {
        .owner          = THIS_MODULE,
        .hash_size      = EXPORT_HASHMAX,
        .name           = "nfsd.export",
index 4767429264a25b3e6003953c8d3f1e70627b075d..2b8e9a93fdd5cd5425e802a6b42c7bd4dff2f171 100644 (file)
@@ -1029,7 +1029,7 @@ rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
        return ret;
 }
 
-struct notifier_block nfsd4_cld_block = {
+static struct notifier_block nfsd4_cld_block = {
        .notifier_call = rpc_pipefs_event,
 };
 
index cf26658e4e31125d3252c9ae1f7c21650cab51bc..3ccebdc4812cd1852ba474651877082e493f1df5 100644 (file)
@@ -4021,7 +4021,7 @@ static void get_lock_access(struct nfs4_ol_stateid *lock_stp, u32 access)
        __set_bit(access, &lock_stp->st_access_bmap);
 }
 
-__be32 lookup_or_create_lock_state(struct nfsd4_compound_state *cstate, struct nfs4_ol_stateid *ost, struct nfsd4_lock *lock, struct nfs4_ol_stateid **lst, bool *new)
+static __be32 lookup_or_create_lock_state(struct nfsd4_compound_state *cstate, struct nfs4_ol_stateid *ost, struct nfsd4_lock *lock, struct nfs4_ol_stateid **lst, bool *new)
 {
        struct nfs4_file *fi = ost->st_file;
        struct nfs4_openowner *oo = openowner(ost->st_stateowner);
index bcd8904ab1e36dd807f26379392000fb114f9bc6..59c5184e6f0d7eeeb9b1ba87eb46fd393dbbb3af 100644 (file)
@@ -3399,7 +3399,7 @@ nfsd4_encode_sequence(struct nfsd4_compoundres *resp, int nfserr,
        return 0;
 }
 
-__be32
+static __be32
 nfsd4_encode_test_stateid(struct nfsd4_compoundres *resp, int nfserr,
                          struct nfsd4_test_stateid *test_stateid)
 {