* [PATCH] FS: Fix OCFS2 warning when DEBUG_FS is not enabled
@ 2006-04-10 21:36 Jean Delvare
0 siblings, 0 replies; only message in thread
From: Jean Delvare @ 2006-04-10 21:36 UTC (permalink / raw)
To: LKML; +Cc: Arjan van de Ven
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@linux-fr.org>
Cc: Arjan van de Ven <arjan@infradead.org>
---
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-04-10 21:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-04-10 21:36 [PATCH] FS: Fix OCFS2 warning when DEBUG_FS is not enabled Jean Delvare
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox