X-Git-Url: http://git.osdn.net/view?a=blobdiff_plain;f=fs%2Ffilesystems.c;h=90b8d879fbaf3d4c8aa6846c33304f400889b6b9;hb=2332319625cc5c703f79d185ac9a53db20913748;hp=77bf5f95362da5ec767c4919e4271c11120a18ff;hpb=2644bc8569baa735ae9c0a92432d6a30c20c1694;p=tomoyo%2Ftomoyo-test1.git diff --git a/fs/filesystems.c b/fs/filesystems.c index 77bf5f95362d..90b8d879fbaf 100644 --- a/fs/filesystems.c +++ b/fs/filesystems.c @@ -272,7 +272,9 @@ struct file_system_type *get_fs_type(const char *name) fs = __get_fs_type(name, len); if (!fs && (request_module("fs-%.*s", len, name) == 0)) { fs = __get_fs_type(name, len); - WARN_ONCE(!fs, "request_module fs-%.*s succeeded, but still no fs?\n", len, name); + if (!fs) + pr_warn_once("request_module fs-%.*s succeeded, but still no fs?\n", + len, name); } if (dot && fs && !(fs->fs_flags & FS_HAS_SUBTYPE)) {