datapath: Stop using __DATE__ and __TIME__ in startup string.
authorJesse Gross <jesse@nicira.com>
Mon, 27 Apr 2015 19:28:55 +0000 (12:28 -0700)
committerJesse Gross <jesse@nicira.com>
Mon, 27 Apr 2015 22:09:28 +0000 (15:09 -0700)
commit26bfaeaa968758e7ce6050d2303a0a215636989f
tree6670082323d4ec25c7f570bf4806b62ad1a3e06e
parentd7d417fcddf972ee14e678352017daaf626437fa
datapath: Stop using __DATE__ and __TIME__ in startup string.

An increasing number of distributions ship with GCC 4.9 (including
Fedora and Ubuntu) that has -Werror=date-time. This causes kernel
compilation to fail because the builds are not exactly reproducible.

This simply removes the use of those constants, which was already
done for the upstream Linux version of the module. It retains the
version string, however, which should provide the same information
in most cases.

Signed-off-by: Jesse Gross <jesse@nicira.com>
Acked-by: Ben Pfaff <blp@nicira.com>
datapath/datapath.c