X-Git-Url: http://git.monstr.eu/?a=blobdiff_plain;f=fs%2Ffilesystems.c;h=90b8d879fbaf3d4c8aa6846c33304f400889b6b9;hb=513149cba8f2b2cadf1e0ecc13d008cb78a455c8;hp=77bf5f95362da5ec767c4919e4271c11120a18ff;hpb=b1da3acc781ce445445d959b41064d209a27bc2d;p=linux-2.6-microblaze.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)) {