From: Ben Pfaff Date: Thu, 23 Jan 2014 23:33:25 +0000 (-0800) Subject: Use __linux__ instead of LINUX_DATAPATH in C code. X-Git-Tag: sliver-openvswitch-2.2.90-1~8^2~5 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=2f51a7ebdaeb1067e3eef873c62f6c22989c9aad;hp=2f51a7ebdaeb1067e3eef873c62f6c22989c9aad;p=sliver-openvswitch.git Use __linux__ instead of LINUX_DATAPATH in C code. The LINUX_DATAPATH C preprocessor symbol was originally meant to be used as a signal for whether the Linux datapath module could be used, but it was used as a proxy for a lot of other stuff that is really just Linux specific. This commit switches all of these users to just test for __linux__, which is more straightforward and should have the same result. CC: Luigi Rizzo Signed-off-by: Ben Pfaff ---