linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert@linux-m68k.org>
To: viro@parcelfarce.linux.theplanet.co.uk
Cc: Stephen Hemminger <shemminger@osdl.org>,
	jffs-dev@axis.com,
	Linux Kernel Development <linux-kernel@vger.kernel.org>,
	Linus Torvalds <torvalds@osdl.org>
Subject: Re: [PATCH] fix type mismatch in jffs.
Date: Wed, 10 Sep 2003 19:14:37 +0200 (MEST)	[thread overview]
Message-ID: <Pine.GSO.4.21.0309101913561.1390-100000@vervain.sonytel.be> (raw)
In-Reply-To: <20030910024010.GN454@parcelfarce.linux.theplanet.co.uk>

On Wed, 10 Sep 2003 viro@parcelfarce.linux.theplanet.co.uk wrote:
> On Tue, Sep 09, 2003 at 02:44:20PM -0700, Stephen Hemminger wrote:
> > On 2.6.0-test5 jffs generates a warning about type mismatch because it casting a short
> > to a pointer.  Look like an obvious typo.
> 
> Which it is.  Thanks for spotting.  Linux, please apply.
>  
> > Builds clean, not tested on real hardware.
> > 
> > diff -Nru a/fs/jffs/inode-v23.c b/fs/jffs/inode-v23.c
> > --- a/fs/jffs/inode-v23.c	Tue Sep  9 14:41:53 2003
> > +++ b/fs/jffs/inode-v23.c	Tue Sep  9 14:41:53 2003
> > @@ -1734,7 +1734,7 @@
> >  		   the device should be read from the flash memory and then
> >  		   added to the inode's i_rdev member.  */
> >  		u16 val;
> > -		jffs_read_data(f, (char *)val, 0, 2);
> > +		jffs_read_data(f, (char *)&val, 0, 2);
> >  		init_special_inode(inode, inode->i_mode,
> >  			old_decode_dev(val));
> >  	}

Is this endian-safe?

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds


  reply	other threads:[~2003-09-10 17:15 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-09-09 21:44 [PATCH] fix type mismatch in jffs Stephen Hemminger
2003-09-10  2:40 ` viro
2003-09-10 17:14   ` Geert Uytterhoeven [this message]
2003-09-10 18:18     ` viro
2003-09-10 18:54       ` Linus Torvalds
2003-09-10 19:03         ` viro
2003-09-10 19:16           ` Russell King
2003-09-11 16:50             ` Jörn Engel

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=Pine.GSO.4.21.0309101913561.1390-100000@vervain.sonytel.be \
    --to=geert@linux-m68k.org \
    --cc=jffs-dev@axis.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=shemminger@osdl.org \
    --cc=torvalds@osdl.org \
    --cc=viro@parcelfarce.linux.theplanet.co.uk \
    /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;
as well as URLs for NNTP newsgroup(s).