[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1441197294-11723-4-git-send-email-ulfalizer.lkml@gmail.com>
Date: Wed, 2 Sep 2015 14:34:54 +0200
From: ulfalizer.lkml@...il.com
To: linux-kernel@...r.kernel.org
Cc: linux-doc@...r.kernel.org, corbet@....net, harryxiyou@...il.com,
jlbec@...lplan.org, ulfalizer@...il.com,
gregkh@...uxfoundation.org, shane.seymour@...com, tj@...nel.org,
bvanassche@....org, serue@...ibm.com
Subject: [PATCH 3/3] configfs: fix pre-kernfs sysfs_dirent reference
From: Ulf Magnusson <ulfalizer@...il.com>
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@...il.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists