public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sysfs: Update the name hash for an entry after changing the namespace
@ 2012-04-04 19:06 Tom Goff
  2012-04-04 19:22 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Goff @ 2012-04-04 19:06 UTC (permalink / raw)
  To: linux-kernel; +Cc: Eric W. Biederman, Greg Kroah-Hartman

This is needed to allow renaming network devices that have been moved
to another network namespace.

Signed-off-by: Tom Goff <thomas.goff@boeing.com>
---
 fs/sysfs/dir.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/sysfs/dir.c b/fs/sysfs/dir.c
index 2a7a3f5..8ddc102 100644
--- a/fs/sysfs/dir.c
+++ b/fs/sysfs/dir.c
@@ -878,7 +878,6 @@ int sysfs_rename(struct sysfs_dirent *sd,
 
 		dup_name = sd->s_name;
 		sd->s_name = new_name;
-		sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
 	}
 
 	/* Move to the appropriate place in the appropriate directories rbtree. */
@@ -886,6 +885,7 @@ int sysfs_rename(struct sysfs_dirent *sd,
 	sysfs_get(new_parent_sd);
 	sysfs_put(sd->s_parent);
 	sd->s_ns = new_ns;
+	sd->s_hash = sysfs_name_hash(sd->s_ns, sd->s_name);
 	sd->s_parent = new_parent_sd;
 	sysfs_link_sibling(sd);
 
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] sysfs: Update the name hash for an entry after changing the namespace
  2012-04-04 19:06 [PATCH] sysfs: Update the name hash for an entry after changing the namespace Tom Goff
@ 2012-04-04 19:22 ` Greg Kroah-Hartman
  2012-04-04 20:30   ` Tom Goff
  0 siblings, 1 reply; 4+ messages in thread
From: Greg Kroah-Hartman @ 2012-04-04 19:22 UTC (permalink / raw)
  To: Tom Goff; +Cc: linux-kernel, Eric W. Biederman

On Wed, Apr 04, 2012 at 12:06:20PM -0700, Tom Goff wrote:
> This is needed to allow renaming network devices that have been moved
> to another network namespace.
> 
> Signed-off-by: Tom Goff <thomas.goff@boeing.com>
> ---
>  fs/sysfs/dir.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)

Is this a bug in 3.4-rc1 and older kernels?  If so, how old?

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sysfs: Update the name hash for an entry after changing the namespace
  2012-04-04 19:22 ` Greg Kroah-Hartman
@ 2012-04-04 20:30   ` Tom Goff
  2012-04-04 21:08     ` Greg Kroah-Hartman
  0 siblings, 1 reply; 4+ messages in thread
From: Tom Goff @ 2012-04-04 20:30 UTC (permalink / raw)
  To: Greg Kroah-Hartman; +Cc: linux-kernel, Eric W. Biederman

On Wed, Apr 04, 2012 at 12:22:36 -0700, Greg Kroah-Hartman wrote:
> On Wed, Apr 04, 2012 at 12:06:20PM -0700, Tom Goff wrote:
> > This is needed to allow renaming network devices that have been moved
> > to another network namespace.
> > 
> > Signed-off-by: Tom Goff <thomas.goff@boeing.com>
> > ---
> >  fs/sysfs/dir.c |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> Is this a bug in 3.4-rc1 and older kernels?  If so, how old?
> 
> thanks,
> 
> greg k-h

Yes, this is a bug in 3.4-rc1.  The patch is really a change to
d5c38b137ac8a6e3dbed13bc494d60df5b69dfc4 'sysfs: Update the name hash
when renaming sysfs entries', committed on January 31.

Thanks for looking at this.

  Tom

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sysfs: Update the name hash for an entry after changing the namespace
  2012-04-04 20:30   ` Tom Goff
@ 2012-04-04 21:08     ` Greg Kroah-Hartman
  0 siblings, 0 replies; 4+ messages in thread
From: Greg Kroah-Hartman @ 2012-04-04 21:08 UTC (permalink / raw)
  To: Tom Goff; +Cc: linux-kernel, Eric W. Biederman

On Wed, Apr 04, 2012 at 01:30:04PM -0700, Tom Goff wrote:
> On Wed, Apr 04, 2012 at 12:22:36 -0700, Greg Kroah-Hartman wrote:
> > On Wed, Apr 04, 2012 at 12:06:20PM -0700, Tom Goff wrote:
> > > This is needed to allow renaming network devices that have been moved
> > > to another network namespace.
> > > 
> > > Signed-off-by: Tom Goff <thomas.goff@boeing.com>
> > > ---
> > >  fs/sysfs/dir.c |    2 +-
> > >  1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > Is this a bug in 3.4-rc1 and older kernels?  If so, how old?
> > 
> > thanks,
> > 
> > greg k-h
> 
> Yes, this is a bug in 3.4-rc1.  The patch is really a change to
> d5c38b137ac8a6e3dbed13bc494d60df5b69dfc4 'sysfs: Update the name hash
> when renaming sysfs entries', committed on January 31.

Good, that patch only went into 3.4-rc1 and nothing newer, I'll queue
this up for 3.4-only, thanks for letting me know.

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2012-04-04 21:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-04 19:06 [PATCH] sysfs: Update the name hash for an entry after changing the namespace Tom Goff
2012-04-04 19:22 ` Greg Kroah-Hartman
2012-04-04 20:30   ` Tom Goff
2012-04-04 21:08     ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox