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:11:18 +0000 (15:11 -0700)
commit0ce527f58f50015e18026c0084b91847a03be2ee
treef7b97b017acbc6181f4d50bcbb2baa5d98107227
parent4c37616790aed90e6c7bf8fee61b29d0c6248044
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