All of lore.kernel.org
 help / color / mirror / Atom feed
From: Josh Triplett <josh@joshtriplett.org>
To: "Franky (Zhenhui) Lin" <frankyl@broadcom.com>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"John W. Linville" <linville@tuxdriver.com>,
	Al Viro <viro@zeniv.linux.org.uk>,
	Arend van Spriel <arend@broadcom.com>,
	Bill Metzenthen <billm@melbpc.org.au>,
	Brett Rudley <brudley@broadcom.com>,
	Brian Norris <computersforpeace@gmail.com>,
	David Woodhouse <dwmw2@infradead.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Hante Meuleman <meuleman@broadcom.com>,
	Henk de Groot <pe1dnn@amsat.org>, Ingo Molnar <mingo@redhat.com>,
	Jingoo Han <jg1.han@samsung.com>,
	Larry Finger <Larry.Finger@lwfinger.net>,
	Lisa Nguyen <lisa@xenapiadmin.com>, Michal Marek <mmarek@suse.cz>,
	Pieter-Paul Giesberts <pieterpg@broadcom.com>,
	Piotr Haber <phaber@broadcom.com>,
	Shawn Guo <shawn.guo@linaro.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	brcm80211-dev-list@broadcom.com, devel@driverdev.osuosl.org,
	linux-kbuild@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-mtd@lists.infradead.org, linux-wireless@vger.kernel.org,
	netdev@vger.kernel.org, x86@kernel.org
Subject: [PATCH 0/7] Eliminate uses of __DATE__ and __TIME__
Date: Mon, 23 Dec 2013 13:54:26 -0800	[thread overview]
Message-ID: <cover.1387833347.git.josh@joshtriplett.org> (raw)

Using the __DATE__ and __TIME macros makes the kernel build non-deterministic.
The kernel already optionally records this information at build time, so random
kernel code shouldn't duplicate that.  Eliminate all uses of __DATE__ and
__TIME__, and then turn on a new GCC warning if available to make sure no new
uses get added.

Josh Triplett (7):
  mtd: denali: Drop print of build date/time
  net: wireless: brcm80211: Drop debug version with build date/time
  staging: rtl8188eu: Drop print of build date/time
  staging: rts5139: Drop print of build time
  staging: wlags49_h2: Drop debug macro recording build date/time
  x86: math-emu: Drop already-disabled print of build date
  Makefile: Build with -Werror=date-time if the compiler supports it

 Makefile                                             | 3 +++
 arch/x86/math-emu/errors.c                           | 5 -----
 drivers/mtd/nand/denali_pci.c                        | 1 -
 drivers/net/wireless/brcm80211/brcmfmac/dhd_common.c | 7 -------
 drivers/staging/rtl8188eu/os_dep/usb_intf.c          | 1 -
 drivers/staging/rts5139/rts51x_scsi.c                | 1 -
 drivers/staging/wlags49_h2/wl_version.h              | 4 ----
 7 files changed, 3 insertions(+), 19 deletions(-)

-- 
1.8.5.2

             reply	other threads:[~2013-12-23 21:55 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-23 21:54 Josh Triplett [this message]
2013-12-23 21:54 ` [PATCH 1/7] mtd: denali: Drop print of build date/time Josh Triplett
2013-12-26  8:24   ` Jingoo Han
2013-12-26  8:24     ` Jingoo Han
2014-01-09 16:55     ` Brian Norris
2014-01-09 16:55       ` Brian Norris
2013-12-23 21:55 ` [PATCH 2/7] net: wireless: brcm80211: Drop debug version with " Josh Triplett
2013-12-23 21:55 ` [PATCH 3/7] staging: rtl8188eu: Drop print of " Josh Triplett
2013-12-24  1:15   ` Larry Finger
2013-12-23 21:55 ` [PATCH 4/7] staging: rts5139: Drop print of build time Josh Triplett
2013-12-23 21:55 ` [PATCH 5/7] staging: wlags49_h2: Drop debug macro recording build date/time Josh Triplett
2013-12-23 21:55 ` [PATCH 6/7] x86: math-emu: Drop already-disabled print of build date Josh Triplett
2013-12-23 21:56 ` [PATCH 7/7] Makefile: Build with -Werror=date-time if the compiler supports it Josh Triplett
2014-01-03 16:40   ` Michal Marek
2014-01-03 20:29     ` Josh Triplett
2014-01-03 20:55       ` Michal Marek
2014-01-03 21:00         ` Josh Triplett
2014-01-14 20:56           ` Michal Marek
2014-01-14 21:40             ` Josh Triplett
2014-01-14 21:46               ` Greg KH
2014-01-27 22:57                 ` Michal Marek

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.1387833347.git.josh@joshtriplett.org \
    --to=josh@joshtriplett.org \
    --cc=Larry.Finger@lwfinger.net \
    --cc=arend@broadcom.com \
    --cc=billm@melbpc.org.au \
    --cc=brcm80211-dev-list@broadcom.com \
    --cc=brudley@broadcom.com \
    --cc=computersforpeace@gmail.com \
    --cc=devel@driverdev.osuosl.org \
    --cc=dwmw2@infradead.org \
    --cc=frankyl@broadcom.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hpa@zytor.com \
    --cc=jg1.han@samsung.com \
    --cc=linux-kbuild@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mtd@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=linville@tuxdriver.com \
    --cc=lisa@xenapiadmin.com \
    --cc=meuleman@broadcom.com \
    --cc=mingo@redhat.com \
    --cc=mmarek@suse.cz \
    --cc=netdev@vger.kernel.org \
    --cc=pe1dnn@amsat.org \
    --cc=phaber@broadcom.com \
    --cc=pieterpg@broadcom.com \
    --cc=shawn.guo@linaro.org \
    --cc=tglx@linutronix.de \
    --cc=viro@zeniv.linux.org.uk \
    --cc=x86@kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.