public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Joe Perches <joe@perches.com>
To: linux-kernel@vger.kernel.org
Cc: Adrian Hunter <adrian.hunter@nokia.com>,
	Alex Elder <aelder@sgi.com>,
	Artem Bityutskiy <dedekind@infradead.org>,
	Christoph Hellwig <hch@lst.de>,
	Harvey Harrison <harvey.harrison@gmail.com>,
	Huang Ying <ying.huang@intel.com>, Ingo Molnar <mingo@elte.hu>,
	Jeff Garzik <jgarzik@redhat.com>,
	Laurent Pinchart <laurent.pinchart@skynet.be>,
	Matt Mackall <mpm@selenic.com>,
	Mauro Carvalho Chehab <mchehab@infradead.org>,
	Neil Brown <neilb@suse.de>,
	Steven Whitehouse <swhiteho@redhat.com>,
	xfs-masters@oss.sgi.com
Subject: [PATCH 0/9] Add vsprintf extension %pU to print UUID/GUIDs and use it
Date: Mon, 28 Sep 2009 22:01:02 -0700	[thread overview]
Message-ID: <cover.1254193019.git.joe@perches.com> (raw)

It makes an x86 defconfig smaller compiled with gcc 4.4 smaller too

old:
$ size vmlinux
   text	   data	    bss	    dec	    hex	filename
6981105	 678300	1359668	9019073	 899ec1	vmlinux

new:
$ size vmlinux
   text	   data	    bss	    dec	    hex	filename
6980770	 678380	1359668	9018818	 899dc2	vmlinux

Joe Perches (9):
  lib/vsprintf.c: Add %pU to print UUID/GUIDs
  efi.h: Use %pUr to print UUIDs
  random.c: Use %pU to print UUIDs
  drivers/firmware/dmi_scan.c: Use %pUX to print UUIDs
  drivers/md/md.c: Use %pU to print UUIDs
  drivers/media/video/uvc: Use %pUr to print UUIDs
  fs/gfs2/sys.c: Use %pUX to print UUIDs
  fs/ubifs: Use %pUX to print UUIDs
  fs/xfs/xfs_log_recover.c: Use %pU to print UUIDs

 drivers/char/random.c                |   10 +---
 drivers/firmware/dmi_scan.c          |    5 +--
 drivers/md/md.c                      |   16 ++------
 drivers/media/video/uvc/uvc_ctrl.c   |   69 ++++++++++++++++------------------
 drivers/media/video/uvc/uvc_driver.c |    7 +--
 drivers/media/video/uvc/uvcvideo.h   |   10 -----
 fs/gfs2/sys.c                        |   16 +------
 fs/ubifs/debug.c                     |    9 +---
 fs/ubifs/super.c                     |    7 +---
 fs/xfs/xfs_log_recover.c             |   14 ++-----
 include/linux/efi.h                  |    6 +--
 lib/vsprintf.c                       |   58 ++++++++++++++++++++++++++++-
 12 files changed, 111 insertions(+), 116 deletions(-)


             reply	other threads:[~2009-09-29  5:01 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-29  5:01 Joe Perches [this message]
2009-09-29  5:01 ` [PATCH 1/9] lib/vsprintf.c: Add %pU to print UUID/GUIDs Joe Perches
2009-10-01  7:10   ` Geert Uytterhoeven
2009-10-01  7:26     ` Joe Perches
2009-10-01  8:55       ` Geert Uytterhoeven
2009-10-07  0:07         ` Joe Perches
2009-09-29  5:01 ` [PATCH 2/9] efi.h: Use %pUr to print UUIDs Joe Perches
2009-09-29  5:01 ` [PATCH 3/9] random.c: Use %pU " Joe Perches
2009-09-29  5:01 ` [PATCH 4/9] drivers/firmware/dmi_scan.c: Use %pUX " Joe Perches
2009-09-29  5:01 ` [PATCH 5/9] drivers/md/md.c: Use %pU " Joe Perches
2009-09-29  5:01 ` [PATCH 6/9] drivers/media/video/uvc: Use %pUr " Joe Perches
2009-10-01  0:20   ` Laurent Pinchart
2009-10-01  0:24     ` Joe Perches
2009-09-29  5:01 ` [PATCH 7/9] fs/gfs2/sys.c: Use %pUX " Joe Perches
2009-09-29  8:50   ` Steven Whitehouse
2009-09-29  5:01 ` [PATCH 8/9] fs/ubifs: " Joe Perches
2009-09-29 12:32   ` Artem Bityutskiy
2009-09-29  5:01 ` [PATCH 9/9] fs/xfs/xfs_log_recover.c: Use %pU " Joe Perches
2009-09-29  5:57 ` [PATCH 0/9] Add vsprintf extension %pU to print UUID/GUIDs and use it Huang Ying
2009-10-01  0:07   ` Laurent Pinchart
2009-10-01  0:20     ` Joe Perches
2009-10-10  5:50     ` Huang Ying

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=cover.1254193019.git.joe@perches.com \
    --to=joe@perches.com \
    --cc=adrian.hunter@nokia.com \
    --cc=aelder@sgi.com \
    --cc=dedekind@infradead.org \
    --cc=harvey.harrison@gmail.com \
    --cc=hch@lst.de \
    --cc=jgarzik@redhat.com \
    --cc=laurent.pinchart@skynet.be \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mchehab@infradead.org \
    --cc=mingo@elte.hu \
    --cc=mpm@selenic.com \
    --cc=neilb@suse.de \
    --cc=swhiteho@redhat.com \
    --cc=xfs-masters@oss.sgi.com \
    --cc=ying.huang@intel.com \
    /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