Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1415375

Re: [PATCH] nfds: Fix NFSD_MDS_PR_KEY on 32-bit by adding ULL postfix

From "J. Bruce Fields" <bfields@fieldses.org>
Newsgroups linux.kernel
Subject Re: [PATCH] nfds: Fix NFSD_MDS_PR_KEY on 32-bit by adding ULL postfix
Date 2016-06-06 21:00 +0200
Message-ID <rH7UK-da-17@gated-at.bofh.it> (permalink)
References <rGCxz-4VF-1@gated-at.bofh.it> <rGDDl-5zW-85@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On Sun, Jun 05, 2016 at 06:21:43AM -0400, Jeff Layton wrote:
> On Sun, 2016-06-05 at 11:23 +0200, Geert Uytterhoeven wrote:
> > On 32-bit:
> > 
> >     fs/nfsd/blocklayout.c: In function ‘nfsd4_block_get_device_info_scsi’:
> >     fs/nfsd/blocklayout.c:337: warning: integer constant is too large for ‘long’ type
> >     fs/nfsd/blocklayout.c:344: warning: integer constant is too large for ‘long’ type
> >     fs/nfsd/blocklayout.c: In function ‘nfsd4_scsi_fence_client’:
> >     fs/nfsd/blocklayout.c:385: warning: integer constant is too large for ‘long’ type
> > 
> > Add the missing "ULL" postfix to 64-bit constant NFSD_MDS_PR_KEY to fix
> > this.
> > 
> > Fixes: f99d4fbdae6765d0 ("nfsd: add SCSI layout support")
> > Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
> > Reviewed-by: Christoph Hellwig <hch@lst.de>
> > ---
> > v2:
> >   - Add Reviewed-by.
> > 
> > Despite Bruce's "Thanks, applying for 4.6.--b." on 2016-03-29, this
> > still hasn't made it into next-20160603.

Apologies, I did apply that to my local 4.6 branch, but I never
collected any more 4.6 patches, and forgot to send a pull request.  I
think I've bugfixes for the current kernel slip by before this way, so I
need a better system....  Thanks for the reminder, feel free to bug me
again if this hasn't gone upstream by next week.

--b.

> > ---
> >  fs/nfsd/blocklayout.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/fs/nfsd/blocklayout.c b/fs/nfsd/blocklayout.c
> > index e55b5242614da7a9..31f3df193bdbb47b 100644
> > --- a/fs/nfsd/blocklayout.c
> > +++ b/fs/nfsd/blocklayout.c
> > @@ -290,7 +290,7 @@ out_free_buf:
> >  	return error;
> >  }
> >  
> > -#define NFSD_MDS_PR_KEY		0x0100000000000000
> > +#define NFSD_MDS_PR_KEY		0x0100000000000000ULL
> >  
> >  /*
> >   * We use the client ID as a unique key for the reservations.
> 
> Thanks!
> 
> Reviewed-by: Jeff Layton <jlayton@poochiereds.net>

Back to linux.kernel | Previous | NextPrevious in thread | Find similar | Unroll thread


Thread

[PATCH] nfds: Fix NFSD_MDS_PR_KEY on 32-bit by adding ULL postfix Geert Uytterhoeven <geert@linux-m68k.org> - 2016-06-05 11:30 +0200
  Re: [PATCH] nfds: Fix NFSD_MDS_PR_KEY on 32-bit by adding ULL  postfix Jeff Layton <jlayton@poochiereds.net> - 2016-06-05 12:40 +0200
    Re: [PATCH] nfds: Fix NFSD_MDS_PR_KEY on 32-bit by adding ULL postfix "J. Bruce Fields" <bfields@fieldses.org> - 2016-06-06 21:00 +0200

csiph-web