[RFC][PATCH 1/3] configfs: set CONFIGFS_USET_DEFAULT earlier in configfs_attach_group()

From: Louis Rilling
Date: Tue May 20 2008 - 12:50:48 EST


When creating a config_group, the CONFIGFS_USET_DEFAULT flag of default
sub-groups is only known after create_default_group() finishes its work, that is
after having creating the whole sub-hierarchy. In order to track which lock to
hide from lockdep, we need to known whether a config_group is default earlier,
that is before creating the sub-hierarchy.

This patch adds a def_group flag to configfs_attach_group(), which allows
configfs_attach_group to set the CONFIGFS_USET_DEFAULT flag before calling
populate_groups().

Signed-off-by: Louis Rilling <Louis.Rilling@xxxxxxxxxxx>
---
fs/configfs/dir.c | 22 ++++++++++++----------
1 file changed, 12 insertions(+), 10 deletions(-)


Index: b/fs/configfs/dir.c
===================================================================
--- a/fs/configfs/dir.c 2008-05-20 17:13:18.000000000 +0200
+++ b/fs/configfs/dir.c 2008-05-20 18:19:35.000000000 +0200
@@ -445,7 +445,8 @@ static int populate_attrs(struct config_

static int configfs_attach_group(struct config_item *parent_item,
struct config_item *item,
- struct dentry *dentry);
+ struct dentry *dentry,
+ int def_group);
static void configfs_detach_group(struct config_item *item);

static void detach_groups(struct config_group *group)
@@ -500,7 +501,6 @@ static int create_default_group(struct c
{
int ret;
struct qstr name;
- struct configfs_dirent *sd;
/* We trust the caller holds a reference to parent */
struct dentry *child, *parent = parent_group->cg_item.ci_dentry;

@@ -516,11 +516,9 @@ static int create_default_group(struct c
d_add(child, NULL);

ret = configfs_attach_group(&parent_group->cg_item,
- &group->cg_item, child);
- if (!ret) {
- sd = child->d_fsdata;
- sd->s_type |= CONFIGFS_USET_DEFAULT;
- } else {
+ &group->cg_item, child,
+ 1);
+ if (ret) {
d_delete(child);
dput(child);
}
@@ -692,7 +690,8 @@ static void configfs_detach_item(struct

static int configfs_attach_group(struct config_item *parent_item,
struct config_item *item,
- struct dentry *dentry)
+ struct dentry *dentry,
+ int def_group)
{
int ret;
struct configfs_dirent *sd;
@@ -701,6 +700,8 @@ static int configfs_attach_group(struct
if (!ret) {
sd = dentry->d_fsdata;
sd->s_type |= CONFIGFS_USET_DIR;
+ if (def_group)
+ sd->s_type |= CONFIGFS_USET_DEFAULT;

ret = populate_groups(to_config_group(item));
if (ret) {
@@ -1094,7 +1095,7 @@ static int configfs_mkdir(struct inode *
module_got = 1;

if (group)
- ret = configfs_attach_group(parent_item, item, dentry);
+ ret = configfs_attach_group(parent_item, item, dentry, 0);
else
ret = configfs_attach_item(parent_item, item, dentry);

@@ -1418,7 +1419,8 @@ int configfs_register_subsystem(struct c
d_add(dentry, NULL);

err = configfs_attach_group(sd->s_element, &group->cg_item,
- dentry);
+ dentry,
+ 0);
if (err) {
d_delete(dentry);
dput(dentry);

--
Dr Louis Rilling Kerlabs
Skype: louis.rilling Batiment Germanium
Phone: (+33|0) 6 80 89 08 23 80 avenue des Buttes de Coesmes
http://www.kerlabs.com/ 35700 Rennes

--
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/