From: Dan Carpenter Date: Thu, 12 Jan 2012 07:07:35 +0000 (+0300) Subject: NFS: cleanup endian type in decode_ds_addr() X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~19846^2~11 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=13fff2f35fd21d69ee84ef6a78610420e1a42818;p=mirror_ubuntu-focal-kernel.git NFS: cleanup endian type in decode_ds_addr() port is supposed to be a __be16 here. The existing code should work fine, but this is a cleanup. Signed-off-by: Dan Carpenter Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/nfs4filelayoutdev.c b/fs/nfs/nfs4filelayoutdev.c index ed388aae9689..8ae91908f5aa 100644 --- a/fs/nfs/nfs4filelayoutdev.c +++ b/fs/nfs/nfs4filelayoutdev.c @@ -382,7 +382,7 @@ decode_ds_addr(struct xdr_stream *streamp, gfp_t gfp_flags) { struct nfs4_pnfs_ds_addr *da = NULL; char *buf, *portstr; - u32 port; + __be16 port; int nlen, rlen; int tmp[2]; __be32 *p;