mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* Is Rational rational?
@ 2003-12-16  2:59 Thomas Molina
  2003-12-16  3:22 ` Linus Torvalds
  2003-12-16  4:48 ` viro
  0 siblings, 2 replies; 3+ messages in thread
From: Thomas Molina @ 2003-12-16  2:59 UTC (permalink / raw)
  To: Kernel Mailing List

Does the enclosed patch to fs/namei.c make sense?

IBM/Rational Software is advocating use of the following patch to deal 
with a situation where users of Clearcase are having difficulties deleting 
sockets, devices, and named pipes when using the mvfs file system.  The 
problem reportedly arises from populating a shadow filesystem with the 
contents of the system root and the handling of sockets, devices and named 
pipes.  The full text of the problem report response can be accessed by 
going to:

http://www.ibm.com/software/rational/support/

and entering 1154790 in the search box.


--- /usr/src/linux/fs/namei.c Tue Oct 30 10:03:52 2001
+++ /usr/src/linux-patched/namei.c Fri Jun 20 05:12:16 2003
@@ -907,7 +907,7 @@
static inline int may_delete(struct inode *dir,struct dentry *victim, int isdir)
{
int error;
- if (!victim->d_inode || victim->d_parent->d_inode != dir)
+ if (!victim->d_inode)
return -ENOENT;
error = permission(dir,MAY_WRITE | MAY_EXEC);
if (error)

I'm not really competent to evaluate this proposesd patch, but it 
certainly makes me nervous.  Their comment on this also bothers me: 
"Rational Software believes that the check that is removed by this patch
is one that should never fail for any properly operating filesystem. "

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

end of thread, other threads:[~2003-12-16  4:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-12-16  2:59 Is Rational rational? Thomas Molina
2003-12-16  3:22 ` Linus Torvalds
2003-12-16  4:48 ` viro

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