X-Git-Url: http://git.monstr.eu/?a=blobdiff_plain;f=fs%2Ffilesystems.c;h=90b8d879fbaf3d4c8aa6846c33304f400889b6b9;hb=19c329f6808995b142b3966301f217c831e7cf31;hp=77bf5f95362da5ec767c4919e4271c11120a18ff;hpb=8a8b80967b421218d89c1af61e759c54ab94fdb6;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)) {