From 8b5f0cfb0cbf54b707e1c16903f841148871baf1 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Fri, 5 Jul 2013 08:51:04 +0200 Subject: configure: Silence pkg-config calls Redirect the output of pkg-config to /dev/null so it doesn't clutter the output of the configure script. Signed-off-by: Tobias Klauser --- configure | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'configure') diff --git a/configure b/configure index a5e8e21..94cc924 100755 --- a/configure +++ b/configure @@ -100,12 +100,12 @@ void main(void) EOF $CC -W -Wall \ - $(pkg-config --cflags libnl-3.0) \ - $(pkg-config --cflags libnl-genl-3.0) \ + $(pkg-config --cflags libnl-3.0 2>&1 > /dev/null) \ + $(pkg-config --cflags libnl-genl-3.0 2>&1 > /dev/null) \ -o $TMPDIR/libnltest \ $TMPDIR/libnltest.c \ - $(pkg-config --libs libnl-3.0) \ - $(pkg-config --libs libnl-genl-3.0) \ + $(pkg-config --libs libnl-3.0 2>&1 > /dev/null) \ + $(pkg-config --libs libnl-genl-3.0 2>&1 > /dev/null) \ >> $TMPDIR/config.log 2>&1 if [ ! -x $TMPDIR/libnltest ] ; then echo "[NO]" @@ -153,7 +153,11 @@ void main(void) } EOF - $CC $(pkg-config --cflags ncurses) -o $TMPDIR/ncursestest $TMPDIR/ncursestest.c $(pkg-config --libs ncurses) >> $TMPDIR/config.log 2>&1 + $CC -W -Wall \ + $(pkg-config --cflags ncurses 2>&1 > /dev/null) \ + -o $TMPDIR/ncursestest $TMPDIR/ncursestest.c \ + $(pkg-config --libs ncurses 2>&1 > /dev/null) \ + >> $TMPDIR/config.log 2>&1 if [ ! -x $TMPDIR/ncursestest ] ; then echo "[NO]" MISSING_DEFS=1 -- cgit v1.2.3-54-g00ecf href='/cgit.cgi/linux/net-next.git/'>summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2015-08-29 17:44:06 -0700
committerDavid S. Miller <davem@davemloft.net>2015-08-29 19:07:15 -0700
commit3eedb41fb43461b5fde3f72fd00a7706f0b90103 (patch)
tree96851bd448a2878fac5ba1e8e0c21b049f585547 /net/openvswitch/vport-geneve.c
parent24d43f32d86026a0e318fee736380e164d85eefa (diff)
openvswitch: Remove egress_tun_info.
tun info is passed using skb-dst pointer. Now we have converted all vports to netdev based implementation so Now we can remove redundant pointer to tun-info from OVS_CB. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/vport-geneve.c')