xattr_handler: pass dentry and inode as separate arguments of ->get()
[linux-2.6-block.git] / fs / ext2 / xattr_security.c
index ba97f243b0504498d16bde66b55b653d76a8f175..7fd3b867ce65fec8d7310fa021fba9821e238c14 100644 (file)
@@ -9,10 +9,10 @@
 
 static int
 ext2_xattr_security_get(const struct xattr_handler *handler,
-                       struct dentry *dentry, const char *name,
-                       void *buffer, size_t size)
+                       struct dentry *unused, struct inode *inode,
+                       const char *name, void *buffer, size_t size)
 {
-       return ext2_xattr_get(d_inode(dentry), EXT2_XATTR_INDEX_SECURITY, name,
+       return ext2_xattr_get(inode, EXT2_XATTR_INDEX_SECURITY, name,
                              buffer, size);
 }