[PATCH 3/3] configfs: fix pre-kernfs sysfs_dirent reference

From: ulfalizer . lkml
Date: Wed Sep 02 2015 - 08:36:58 EST


From: Ulf Magnusson <ulfalizer@xxxxxxxxx>

sysfs_dirent was renamed in 324a56e16e44 ("kernfs:
s/sysfs_dirent/kernfs_node/ and rename its friends accordingly").

Do s/sysfs_dirent/configfs_dirent/ - possibly a copy-paste error to
begin with. Clean up the language a bit too.

Signed-off-by: Ulf Magnusson <ulfalizer@xxxxxxxxx>
---
fs/configfs/inode.c | 11 ++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/fs/configfs/inode.c b/fs/configfs/inode.c
index eae8757..e076661 100644
--- a/fs/configfs/inode.c
+++ b/fs/configfs/inode.c
@@ -133,13 +133,14 @@ struct inode *configfs_new_inode(umode_t mode, struct configfs_dirent *sd,
inode->i_mapping->a_ops = &configfs_aops;
inode->i_op = &configfs_inode_operations;

- if (sd->s_iattr) {
- /* sysfs_dirent has non-default attributes
- * get them for the new inode from persistent copy
- * in sysfs_dirent
+ if (sd->s_iattr)
+ /*
+ * configfs_dirent has non-default attributes. Set them
+ * on the new inode from the persistent copy in
+ * configfs_dirent.
*/
set_inode_attr(inode, sd->s_iattr);
- } else
+ else
set_default_inode_attr(inode, mode);
}
return inode;
--
2.1.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/