make __d_alloc() static
authorAl Viro <viro@zeniv.linux.org.uk>
Fri, 25 Oct 2019 18:08:24 +0000 (14:08 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Fri, 25 Oct 2019 18:08:24 +0000 (14:08 -0400)
no users outside of fs/dcache.c

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/dcache.c
fs/internal.h

index e88cf0554e65907d0136595a4521fc06fd521da4..8ede5fa1e32cc60f126039728aa6c2219e2adc6f 100644 (file)
@@ -1679,7 +1679,7 @@ EXPORT_SYMBOL(d_invalidate);
  * copied and the copy passed in may be reused after this call.
  */
  
-struct dentry *__d_alloc(struct super_block *sb, const struct qstr *name)
+static struct dentry *__d_alloc(struct super_block *sb, const struct qstr *name)
 {
        struct dentry *dentry;
        char *dname;
index 315fcd8d237ccb7264aa06f15e7d6c977ab52bf5..4a7da1df573da9070fa352c1ba5d538b61aaecfe 100644 (file)
@@ -151,7 +151,6 @@ extern int invalidate_inodes(struct super_block *, bool);
 /*
  * dcache.c
  */
-extern struct dentry *__d_alloc(struct super_block *, const struct qstr *);
 extern int d_set_mounted(struct dentry *dentry);
 extern long prune_dcache_sb(struct super_block *sb, struct shrink_control *sc);
 extern struct dentry *d_alloc_cursor(struct dentry *);