summaryrefslogtreecommitdiffstats
path: root/fs/nfs/flexfilelayout
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2017-02-27 17:30:02 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2017-02-27 21:43:47 -0500
commit5b5e0928f742cfa853b2411400a1b19fa379d758 (patch)
tree44ef4dd9cfd9587c81f4183638648b340a3d3b7e /fs/nfs/flexfilelayout
parentd7f6724366c5ccb52b9b2e403b0a9383803bd47a (diff)
lib/vsprintf.c: remove %Z support
Now that %z is standartised in C99 there is no reason to support %Z. Unlike %L it doesn't even make format strings smaller. Use BUILD_BUG_ON in a couple ATM drivers. In case anyone didn't notice lib/vsprintf.o is about half of SLUB which is in my opinion is quite an achievement. Hopefully this patch inspires someone else to trim vsprintf.c more. Link: http://lkml.kernel.org/r/20170103230126.GA30170@avx2 Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> Cc: Andy Shevchenko <andy.shevchenko@gmail.com> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/nfs/flexfilelayout')
-rw-r--r--fs/nfs/flexfilelayout/flexfilelayout.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/flexfilelayout/flexfilelayout.c b/fs/nfs/flexfilelayout/flexfilelayout.c
index 0ca4af8cca5d..d6acc688df7e 100644
--- a/fs/nfs/flexfilelayout/flexfilelayout.c
+++ b/fs/nfs/flexfilelayout/flexfilelayout.c
@@ -1751,7 +1751,7 @@ ff_layout_read_pagelist(struct nfs_pgio_header *hdr)
1751 int vers; 1751 int vers;
1752 struct nfs_fh *fh; 1752 struct nfs_fh *fh;
1753 1753
1754 dprintk("--> %s ino %lu pgbase %u req %Zu@%llu\n", 1754 dprintk("--> %s ino %lu pgbase %u req %zu@%llu\n",
1755 __func__, hdr->inode->i_ino, 1755 __func__, hdr->inode->i_ino,
1756 hdr->args.pgbase, (size_t)hdr->args.count, offset); 1756 hdr->args.pgbase, (size_t)hdr->args.count, offset);
1757 1757
@@ -1828,7 +1828,7 @@ ff_layout_write_pagelist(struct nfs_pgio_header *hdr, int sync)
1828 1828
1829 vers = nfs4_ff_layout_ds_version(lseg, idx); 1829 vers = nfs4_ff_layout_ds_version(lseg, idx);
1830 1830
1831 dprintk("%s ino %lu sync %d req %Zu@%llu DS: %s cl_count %d vers %d\n", 1831 dprintk("%s ino %lu sync %d req %zu@%llu DS: %s cl_count %d vers %d\n",
1832 __func__, hdr->inode->i_ino, sync, (size_t) hdr->args.count, 1832 __func__, hdr->inode->i_ino, sync, (size_t) hdr->args.count,
1833 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count), 1833 offset, ds->ds_remotestr, atomic_read(&ds->ds_clp->cl_count),
1834 vers); 1834 vers);