mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] proc-ns: Use d_set_d_op() API to set dentry ops in proc_ns_instantiate().
@ 2012-03-14  2:08 Jesse Gross
  2012-03-14 18:43 ` Eric W. Biederman
  2012-03-22 23:17 ` Andrew Morton
  0 siblings, 2 replies; 5+ messages in thread
From: Jesse Gross @ 2012-03-14  2:08 UTC (permalink / raw)
  To: Andrew Morton
  Cc: linux-kernel, Pravin B Shelar, Eric W. Biederman, Justin Pettit

From: Pravin B Shelar <pshelar@nicira.com>

Use d_set_d_op() so that DCACHE_OP_* flags are set correctly which fixes ns
cleanup path i.e. `ip netns delete `.

This issue exists back to 3.0.

CC: Eric W. Biederman <ebiederm@xmission.com>
Reported-by: Justin Pettit <jpettit@nicira.com>
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
---
 fs/proc/namespaces.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c
index 27da860..3551f1f 100644
--- a/fs/proc/namespaces.c
+++ b/fs/proc/namespaces.c
@@ -53,7 +53,7 @@ static struct dentry *proc_ns_instantiate(struct inode *dir,
 	ei->ns_ops    = ns_ops;
 	ei->ns	      = ns;
 
-	dentry->d_op = &pid_dentry_operations;
+	d_set_d_op(dentry, &pid_dentry_operations);
 	d_add(dentry, inode);
 	/* Close the race of the process dying before we return the dentry */
 	if (pid_revalidate(dentry, NULL))
-- 
1.7.5.4


^ permalink raw reply	[flat|nested] 5+ messages in thread
* [PATCH] proc-ns: Use d_set_d_op() API to set dentry ops in proc_ns_instantiate().
@ 2012-02-23  4:05 Pravin B Shelar
  0 siblings, 0 replies; 5+ messages in thread
From: Pravin B Shelar @ 2012-02-23  4:05 UTC (permalink / raw)
  To: jpettit, ebiederm, linux-kernel; +Cc: jesse, Pravin B Shelar

Use d_set_d_op() so that DCACHE_OP_* flags are set correctly which fixes ns
cleanup path i.e. `ip netns delete `.

Reported-by: Justin Pettit <jpettit@nicira.com>
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>

---
 fs/proc/namespaces.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/proc/namespaces.c b/fs/proc/namespaces.c
index 27da860..3551f1f 100644
--- a/fs/proc/namespaces.c
+++ b/fs/proc/namespaces.c
@@ -53,7 +53,7 @@ static struct dentry *proc_ns_instantiate(struct inode *dir,
 	ei->ns_ops    = ns_ops;
 	ei->ns	      = ns;
 
-	dentry->d_op = &pid_dentry_operations;
+	d_set_d_op(dentry, &pid_dentry_operations);
 	d_add(dentry, inode);
 	/* Close the race of the process dying before we return the dentry */
 	if (pid_revalidate(dentry, NULL))
-- 
1.7.1


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

end of thread, other threads:[~2012-03-22 23:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-14  2:08 [PATCH] proc-ns: Use d_set_d_op() API to set dentry ops in proc_ns_instantiate() Jesse Gross
2012-03-14 18:43 ` Eric W. Biederman
2012-03-16 20:34   ` Jesse Gross
2012-03-22 23:17 ` Andrew Morton
  -- strict thread matches above, loose matches on Subject: below --
2012-02-23  4:05 Pravin B Shelar

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

Powered by JetHome