]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
sunrpc/cache: remove the exporting of cache_seq_next
authorDenis Efremov <efremov@linux.com>
Mon, 8 Jul 2019 16:14:23 +0000 (19:14 +0300)
committerJ. Bruce Fields <bfields@redhat.com>
Mon, 8 Jul 2019 23:23:17 +0000 (19:23 -0400)
The function cache_seq_next is declared static and marked
EXPORT_SYMBOL_GPL, which is at best an odd combination. Because the
function is not used outside of the net/sunrpc/cache.c file it is
defined in, this commit removes the EXPORT_SYMBOL_GPL() marking.

Fixes: d48cf356a130 ("SUNRPC: Remove non-RCU protected lookup")
Signed-off-by: Denis Efremov <efremov@linux.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
net/sunrpc/cache.c

index d223289848537809c0cbde147ade893f7bdd38c2..ce14f26c58b154fe5d458c32877651d9be853180 100644 (file)
@@ -1377,7 +1377,6 @@ static void *cache_seq_next(struct seq_file *m, void *p, loff_t *pos)
                                hlist_first_rcu(&cd->hash_table[hash])),
                                struct cache_head, cache_list);
 }
-EXPORT_SYMBOL_GPL(cache_seq_next);
 
 void *cache_seq_start_rcu(struct seq_file *m, loff_t *pos)
        __acquires(RCU)