The patch titled Fix OCFS2 warning when DEBUG_FS is not enabled has been removed from the -mm tree. Its filename is fs-fix-ocfs2-warning-when-debug_fs-is-not-enabled.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. From: Jean Delvare <khali@xxxxxxxxxxxx> 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> Cc: Joel Becker <Joel.Becker@xxxxxxxxxx> Cc: Mark Fasheh <mark.fasheh@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/debugfs.h | 5 ++--- 1 files changed, 2 insertions(+), 3 deletions(-) diff -puN include/linux/debugfs.h~fs-fix-ocfs2-warning-when-debug_fs-is-not-enabled include/linux/debugfs.h --- 25/include/linux/debugfs.h~fs-fix-ocfs2-warning-when-debug_fs-is-not-enabled Tue Apr 11 14:03:38 2006 +++ 25-akpm/include/linux/debugfs.h Tue Apr 11 14:03:38 2006 @@ -58,9 +58,8 @@ struct dentry *debugfs_create_blob(const */ 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); } _ Patches currently in -mm which might be from khali@xxxxxxxxxxxx are origin.patch scx200_acb-fix-for-cs5535-eratta.patch scx200_acb-use-pci-i-o-resource-when-appropriate.patch i2c-add-support-for-virtual-i2c-adapters.patch i2c-pca954x-i2c-mux-driver.patch i2c-mpc-fix-up-error-handling.patch opencores-i2c-bus-driver.patch opencores-i2c-bus-driver-tidy.patch opencores-i2c-bus-driver-fix.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html