* [PATCH] Remove ext2_notify_change()
@ 2001-09-26 19:09 KVK
2001-09-26 20:12 ` Mike Fedyk
0 siblings, 1 reply; 2+ messages in thread
From: KVK @ 2001-09-26 19:09 UTC (permalink / raw)
To: linux-kernel; +Cc: torvalds, sct
ext2_notify_change() is no longer used by anyone. I think it can be
safely removed. Patch against 2.4.10 follows.
Thanks,
-kvk
PS. I think there is lot of other dead code in ext2. I happened to
notice this while going through vmtruncate().
--- vanilla/linux/fs/ext2/inode.c Mon Sep 24 09:04:50 2001
+++ linux/fs/ext2/inode.c Wed Sep 26 11:32:25 2001
@@ -1164,60 +1164,3 @@
return ext2_update_inode (inode, 1);
}
-int ext2_notify_change(struct dentry *dentry, struct iattr *iattr)
-{
- struct inode *inode = dentry->d_inode;
- int retval;
- unsigned int flags;
-
- retval = -EPERM;
- if (iattr->ia_valid & ATTR_ATTR_FLAG &&
- ((!(iattr->ia_attr_flags & ATTR_FLAG_APPEND) !=
- !(inode->u.ext2_i.i_flags & EXT2_APPEND_FL)) ||
- (!(iattr->ia_attr_flags & ATTR_FLAG_IMMUTABLE) !=
- !(inode->u.ext2_i.i_flags & EXT2_IMMUTABLE_FL)))) {
- if (!capable(CAP_LINUX_IMMUTABLE))
- goto out;
- } else if ((current->fsuid != inode->i_uid) && !capable(CAP_FOWNER))
- goto out;
-
- retval = inode_change_ok(inode, iattr);
- if (retval != 0)
- goto out;
-
- inode_setattr(inode, iattr);
-
- flags = iattr->ia_attr_flags;
- if (flags & ATTR_FLAG_SYNCRONOUS) {
- inode->i_flags |= S_SYNC;
- inode->u.ext2_i.i_flags |= EXT2_SYNC_FL;
- } else {
- inode->i_flags &= ~S_SYNC;
- inode->u.ext2_i.i_flags &= ~EXT2_SYNC_FL;
- }
- if (flags & ATTR_FLAG_NOATIME) {
- inode->i_flags |= S_NOATIME;
- inode->u.ext2_i.i_flags |= EXT2_NOATIME_FL;
- } else {
- inode->i_flags &= ~S_NOATIME;
- inode->u.ext2_i.i_flags &= ~EXT2_NOATIME_FL;
- }
- if (flags & ATTR_FLAG_APPEND) {
- inode->i_flags |= S_APPEND;
- inode->u.ext2_i.i_flags |= EXT2_APPEND_FL;
- } else {
- inode->i_flags &= ~S_APPEND;
- inode->u.ext2_i.i_flags &= ~EXT2_APPEND_FL;
- }
- if (flags & ATTR_FLAG_IMMUTABLE) {
- inode->i_flags |= S_IMMUTABLE;
- inode->u.ext2_i.i_flags |= EXT2_IMMUTABLE_FL;
- } else {
- inode->i_flags &= ~S_IMMUTABLE;
- inode->u.ext2_i.i_flags &= ~EXT2_IMMUTABLE_FL;
- }
- mark_inode_dirty(inode);
-out:
- return retval;
-}
-
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] Remove ext2_notify_change()
2001-09-26 19:09 [PATCH] Remove ext2_notify_change() KVK
@ 2001-09-26 20:12 ` Mike Fedyk
0 siblings, 0 replies; 2+ messages in thread
From: Mike Fedyk @ 2001-09-26 20:12 UTC (permalink / raw)
To: linux-kernel
On Wed, Sep 26, 2001 at 03:09:52PM -0400, KVK wrote:
> ext2_notify_change() is no longer used by anyone. I think it can be
> safely removed. Patch against 2.4.10 follows.
>
This isn't the code that samba uses to get the kernel to report when a
directory has changed is it?
If so, I think you should check to make sure that it won't break samba.
If I'm wrong, please ignore...
Mike
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2001-09-26 20:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-09-26 19:09 [PATCH] Remove ext2_notify_change() KVK
2001-09-26 20:12 ` Mike Fedyk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®