[PATCH] FS: Fix OCFS2 warning when DEBUG_FS is not enabled

From: Jean Delvare
Date: Mon Apr 10 2006 - 17:37:34 EST


Fix the following warning which happens when OCFS2_FS is enabled but
DEBUG_FS isn't:

fs/ocfs2/dlmglue.c: In function `ocfs2_dlm_init_debug':
fs/ocfs2/dlmglue.c:2036: warning: passing arg 5 of `debugfs_create_file' discards qualifiers from pointer target type

Signed-off-by: Jean Delvare <khali@xxxxxxxxxxxx>
Cc: Arjan van de Ven <arjan@xxxxxxxxxxxxx>
---
include/linux/debugfs.h | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)

Warning introduced by commit 4b6f5d20b04dcbc3d888555522b90ba6d36c4106,
should have been fixed (but wasn't) by commit
99ac48f54a91d02140c497edc31dc57d4bc5c85d.

--- linux-2.6.17-rc1.orig/include/linux/debugfs.h 2006-04-03 20:13:29.000000000 +0200
+++ linux-2.6.17-rc1/include/linux/debugfs.h 2006-04-10 23:09:59.000000000 +0200
@@ -58,9 +58,8 @@
*/

static inline struct dentry *debugfs_create_file(const char *name, mode_t mode,
- struct dentry *parent,
- void *data,
- struct file_operations *fops)
+ struct dentry *parent, void *data,
+ const struct file_operations *fops)
{
return ERR_PTR(-ENODEV);
}


--
Jean Delvare
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/