From: "Lukáš Czerner" <lczerner@redhat.com>
To: Andreas Dilger <adilger@dilger.ca>
Cc: tytso@mit.edu, linux-ext4@vger.kernel.org
Subject: Re: [PATCH] misc: fix create_inode warnings with LLVM
Date: Tue, 27 May 2014 18:34:52 +0200 (CEST) [thread overview]
Message-ID: <alpine.LFD.2.00.1405271834430.2055@localhost.localdomain> (raw)
In-Reply-To: <1400627542-75060-1-git-send-email-adilger@dilger.ca>
On Tue, 20 May 2014, Andreas Dilger wrote:
> Date: Tue, 20 May 2014 17:12:22 -0600
> From: Andreas Dilger <adilger@dilger.ca>
> To: tytso@mit.edu
> Cc: linux-ext4@vger.kernel.org, Andreas Dilger <adilger@dilger.ca>
> Subject: [PATCH] misc: fix create_inode warnings with LLVM
>
> Fix name clash in do_mknod_internal() due to local variables named
> "major" and "minor" shadowing identical macro names.
>
> Also, no need to set the major and minor device for a FIFO inode.
>
> Signed-off-by: Andreas Dilger <adilger@dilger.ca>
Looks good, thanks!
Reviewed-by: Lukas Czerner <lczerner@redhat.com>
> ---
> misc/create_inode.c | 26 ++++++++++++++------------
> 1 file changed, 14 insertions(+), 12 deletions(-)
>
> diff --git a/misc/create_inode.c b/misc/create_inode.c
> index 964c66a..1d666c7 100644
> --- a/misc/create_inode.c
> +++ b/misc/create_inode.c
> @@ -96,9 +96,9 @@ errcode_t do_mknod_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
> struct stat *st)
> {
> ext2_ino_t ino;
> - errcode_t retval;
> + errcode_t retval;
> struct ext2_inode inode;
> - unsigned long major, minor, mode;
> + unsigned long devmajor, devminor, mode;
> int filetype;
>
> switch(st->st_mode & S_IFMT) {
> @@ -153,16 +153,18 @@ errcode_t do_mknod_internal(ext2_filsys fs, ext2_ino_t cwd, const char *name,
> inode.i_atime = inode.i_ctime = inode.i_mtime =
> fs->now ? fs->now : time(0);
>
> - major = major(st->st_rdev);
> - minor = minor(st->st_rdev);
> -
> - if ((major < 256) && (minor < 256)) {
> - inode.i_block[0] = major * 256 + minor;
> - inode.i_block[1] = 0;
> - } else {
> - inode.i_block[0] = 0;
> - inode.i_block[1] = (minor & 0xff) | (major << 8) |
> - ((minor & ~0xff) << 12);
> + if (filetype != S_IFIFO) {
> + devmajor = major(st->st_rdev);
> + devminor = minor(st->st_rdev);
> +
> + if ((devmajor < 256) && (devminor < 256)) {
> + inode.i_block[0] = devmajor * 256 + devminor;
> + inode.i_block[1] = 0;
> + } else {
> + inode.i_block[0] = 0;
> + inode.i_block[1] = (devminor & 0xff) | (devmajor << 8) |
> + ((devminor & ~0xff) << 12);
> + }
> }
> inode.i_links_count = 1;
>
>
next prev parent reply other threads:[~2014-05-27 16:35 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-20 23:12 [PATCH] misc: fix create_inode warnings with LLVM Andreas Dilger
2014-05-27 16:34 ` Lukáš Czerner [this message]
2014-05-27 16:51 ` Theodore Ts'o
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=alpine.LFD.2.00.1405271834430.2055@localhost.localdomain \
--to=lczerner@redhat.com \
--cc=adilger@dilger.ca \
--cc=linux-ext4@vger.kernel.org \
--cc=tytso@mit.edu \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox