From: Ben Pfaff Date: Tue, 26 Apr 2011 18:39:10 +0000 (-0700) Subject: Remove unneeded #include directives. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b05efc6b4a9aa77be588310e223f9826401208b;p=openvswitch Remove unneeded #include directives. --- diff --git a/ofproto/ofproto.c b/ofproto/ofproto.c index cead7f76..0745e127 100644 --- a/ofproto/ofproto.c +++ b/ofproto/ofproto.c @@ -19,56 +19,32 @@ #include "ofproto.h" #include #include -#include -#include -#include #include #include -#include "autopath.h" -#include "bitmap.h" -#include "bond.h" #include "byte-order.h" -#include "cfm.h" #include "classifier.h" #include "connmgr.h" #include "coverage.h" #include "dynamic-string.h" -#include "fail-open.h" #include "hash.h" #include "hmap.h" -#include "hmapx.h" -#include "in-band.h" -#include "lacp.h" -#include "mac-learning.h" -#include "multipath.h" #include "netdev.h" -#include "netflow.h" -#include "netlink.h" #include "nx-match.h" -#include "odp-util.h" #include "ofp-print.h" #include "ofp-util.h" -#include "ofproto-sflow.h" #include "ofpbuf.h" #include "openflow/nicira-ext.h" #include "openflow/openflow.h" -#include "openvswitch/datapath-protocol.h" #include "packets.h" #include "pinsched.h" #include "pktbuf.h" #include "poll-loop.h" #include "private.h" -#include "rconn.h" #include "shash.h" #include "sset.h" -#include "stream-ssl.h" -#include "tag.h" -#include "timer.h" #include "timeval.h" #include "unaligned.h" #include "unixctl.h" -#include "vconn.h" -#include "vlan-bitmap.h" #include "vlog.h" VLOG_DEFINE_THIS_MODULE(ofproto); diff --git a/vswitchd/bridge.c b/vswitchd/bridge.c index 72bb28bf..761d02ba 100644 --- a/vswitchd/bridge.c +++ b/vswitchd/bridge.c @@ -15,59 +15,36 @@ #include #include "bridge.h" -#include "byte-order.h" #include #include -#include -#include #include -#include -#include -#include -#include #include -#include -#include -#include -#include -#include #include "bitmap.h" #include "bond.h" #include "cfm.h" -#include "classifier.h" #include "coverage.h" #include "daemon.h" #include "dirs.h" #include "dynamic-string.h" -#include "flow.h" #include "hash.h" #include "hmap.h" #include "jsonrpc.h" #include "lacp.h" #include "list.h" -#include "mac-learning.h" #include "netdev.h" -#include "netlink.h" -#include "odp-util.h" #include "ofp-print.h" #include "ofpbuf.h" -#include "ofproto/netflow.h" #include "ofproto/ofproto.h" -#include "ovsdb-data.h" -#include "packets.h" #include "poll-loop.h" -#include "process.h" #include "sha1.h" #include "shash.h" #include "socket-util.h" #include "stream-ssl.h" #include "sset.h" -#include "svec.h" #include "system-stats.h" #include "timeval.h" #include "util.h" #include "unixctl.h" -#include "vconn.h" #include "vswitchd/vswitch-idl.h" #include "xenserver.h" #include "vlog.h"