From: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
To: Brian Gerst <bgerst@didntduck.org>
Cc: Linus Torvalds <torvalds@transmeta.com>,
Linux-Kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] struct super_block cleanup - msdos/vfat
Date: Fri, 15 Mar 2002 13:00:09 +0900 [thread overview]
Message-ID: <87wuwemqeu.fsf@devron.myhome.or.jp> (raw)
In-Reply-To: <3C8FE8E3.2040204@didntduck.org> <87k7sfoi8c.fsf@devron.myhome.or.jp> <87bsdrohu3.fsf@devron.myhome.or.jp> <3C90A9C4.4030801@didntduck.org> <874rjjnp5t.fsf@devron.myhome.or.jp> <3C913DFE.9020306@didntduck.org>
In-Reply-To: <3C913DFE.9020306@didntduck.org>
Brian Gerst <bgerst@didntduck.org> writes:
> Patch attached.
>
> --
>
> Brian Gerst
Thanks a lot!
> diff -urN linux/fs/msdos/namei.c linux2/fs/msdos/namei.c
> --- linux/fs/msdos/namei.c Thu Mar 14 10:53:20 2002
> +++ linux2/fs/msdos/namei.c Thu Mar 14 10:54:53 2002
> @@ -607,7 +607,7 @@
>
> res = fat_fill_super(sb, data, silent, &msdos_dir_inode_operations, 0);
> if (res) {
> - if (!silent)
> + if (res == -EINVAL && !silent)
> printk(KERN_INFO "VFS: Can't find a valid"
> " MSDOS filesystem on dev %s.\n", sb->s_id);
> return res;
> diff -urN linux/fs/vfat/namei.c linux2/fs/vfat/namei.c
> --- linux/fs/vfat/namei.c Thu Mar 14 10:53:20 2002
> +++ linux2/fs/vfat/namei.c Thu Mar 14 10:55:20 2002
> @@ -1290,7 +1290,7 @@
>
> res = fat_fill_super(sb, data, silent, &vfat_dir_inode_operations, 1);
> if (res) {
> - if (!silent)
> + if (res == -EINVAL && !silent)
> printk(KERN_INFO "VFS: Can't find a valid"
> " VFAT filesystem on dev %s.\n", sb->s_id);
> return res;
--
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
next prev parent reply other threads:[~2002-03-15 4:01 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-03-14 0:03 [PATCH] struct super_block cleanup - msdos/vfat Brian Gerst
2002-03-14 0:35 ` Alexander Viro
2002-03-15 14:40 ` Denis Vlasenko
2002-03-15 11:27 ` Alexander Viro
2002-03-15 18:24 ` Denis Vlasenko
2002-03-14 5:01 ` OGAWA Hirofumi
2002-03-14 5:10 ` OGAWA Hirofumi
2002-03-14 13:46 ` Brian Gerst
2002-03-14 15:29 ` OGAWA Hirofumi
2002-03-15 0:19 ` Brian Gerst
2002-03-15 4:00 ` OGAWA Hirofumi [this message]
[not found] <fa.fu00kkv.1b3a6a4@ifi.uio.no>
[not found] ` <fa.mfr7rqv.k42rjk@ifi.uio.no>
2002-03-19 7:01 ` Kasper Dupont
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87wuwemqeu.fsf@devron.myhome.or.jp \
--to=hirofumi@mail.parknet.co.jp \
--cc=bgerst@didntduck.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@transmeta.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.