kernfs: remove kernfs_create_file and kernfs_create_file_ns
authorChristoph Hellwig <hch@lst.de>
Mon, 13 Sep 2021 05:41:10 +0000 (07:41 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 14 Sep 2021 14:54:55 +0000 (16:54 +0200)
All callers actually use __kernfs_create_file.

Acked-by: Christian Brauner <christian.brauner@ubuntu.com>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Link: https://lore.kernel.org/r/20210913054121.616001-3-hch@lst.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
include/linux/kernfs.h

index 1093abf7c28ccbefe55cd40bb83cd7c5b9487923..cecfeedb7361d9421c790eae23e94b66fff6d744 100644 (file)
@@ -568,30 +568,6 @@ kernfs_create_dir(struct kernfs_node *parent, const char *name, umode_t mode,
                                    priv, NULL);
 }
 
-static inline struct kernfs_node *
-kernfs_create_file_ns(struct kernfs_node *parent, const char *name,
-                     umode_t mode, kuid_t uid, kgid_t gid,
-                     loff_t size, const struct kernfs_ops *ops,
-                     void *priv, const void *ns)
-{
-       struct lock_class_key *key = NULL;
-
-#ifdef CONFIG_DEBUG_LOCK_ALLOC
-       key = (struct lock_class_key *)&ops->lockdep_key;
-#endif
-       return __kernfs_create_file(parent, name, mode, uid, gid,
-                                   size, ops, priv, ns, key);
-}
-
-static inline struct kernfs_node *
-kernfs_create_file(struct kernfs_node *parent, const char *name, umode_t mode,
-                  loff_t size, const struct kernfs_ops *ops, void *priv)
-{
-       return kernfs_create_file_ns(parent, name, mode,
-                                    GLOBAL_ROOT_UID, GLOBAL_ROOT_GID,
-                                    size, ops, priv, NULL);
-}
-
 static inline int kernfs_remove_by_name(struct kernfs_node *parent,
                                        const char *name)
 {