public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] fix reiser4 compilation for ->permission changes
@ 2004-09-13 14:02 Christoph Hellwig
  2004-09-13 14:04 ` Christoph Hellwig
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2004-09-13 14:02 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel

remove reiser4 permission.  It only ends up calling generic_permission
with no additional bits so it's completely unessecary.


--- reiser4/fs/reiser4/inode_ops.c~	2004-09-13 16:01:33.692057520 +0200
+++ reiser4/fs/reiser4/inode_ops.c	2004-09-13 16:01:48.759766880 +0200
@@ -64,7 +64,6 @@
 static int reiser4_readlink(struct dentry *, char *, int);
 static int reiser4_follow_link(struct dentry *, struct nameidata *);
 static void reiser4_truncate(struct inode *);
-static int reiser4_permission(struct inode *, int, struct nameidata *);
 static int reiser4_setattr(struct dentry *, struct iattr *);
 static int reiser4_getattr(struct vfsmount *mnt, struct dentry *, struct kstat *);
 
@@ -394,22 +393,6 @@
 	reiser4_exit_context(&ctx);
 }
 
-/* ->permission() method in reiser4_inode_operations. */
-static int
-reiser4_permission(struct inode *inode /* object */ ,
-		   int mask,	/* mode bits to check permissions
-				 * for */
-		   struct nameidata *nameidata)
-{
-	/* reiser4_context creation/destruction removed from here,
-	   because permission checks currently don't require this.
-
-	   Permission plugin have to create context itself if necessary. */
-	assert("nikita-1687", inode != NULL);
-
-	return perm_chk(inode, mask, inode, mask);
-}
-
 /* common part of both unlink and rmdir. */
 static int
 unlink_file(struct inode *parent /* parent directory */ ,
@@ -615,7 +598,6 @@
 	.readlink = NULL,
 	.follow_link = NULL,
 	.truncate = reiser4_truncate,	/* d */
-	.permission = reiser4_permission,	/* d */
 	.setattr = reiser4_setattr,	/* d */
 	.getattr = reiser4_getattr,	/* d */
 };

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

end of thread, other threads:[~2004-09-13 17:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-13 14:02 [PATCH] fix reiser4 compilation for ->permission changes Christoph Hellwig
2004-09-13 14:04 ` Christoph Hellwig
2004-09-13 17:09   ` Alex Zarochentsev
2004-09-13 17:19     ` Christoph Hellwig

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