dpif-netdev: Fix double inclusion of cmap.h
authorIlya Maximets <i.maximets@samsung.com>
Thu, 25 Feb 2016 07:51:01 +0000 (10:51 +0300)
committerJoe Stringer <joe@ovn.org>
Fri, 26 Feb 2016 00:09:29 +0000 (16:09 -0800)
Also, all headers sorted lexicographically.

Signed-off-by: Ilya Maximets <i.maximets@samsung.com>
Signed-off-by: Joe Stringer <joe@ovn.org>
lib/dpif-netdev.c

index 500e7cc..a7e224a 100644 (file)
 #include <errno.h>
 #include <fcntl.h>
 #include <inttypes.h>
-#include <netinet/in.h>
-#include <sys/socket.h>
 #include <net/if.h>
+#include <netinet/in.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
 #include <sys/ioctl.h>
+#include <sys/socket.h>
 #include <sys/stat.h>
 #include <unistd.h>
 
 #include "bitmap.h"
 #include "cmap.h"
+#include "coverage.h"
 #include "csum.h"
 #include "dp-packet.h"
 #include "dpif.h"
@@ -41,8 +42,6 @@
 #include "dynamic-string.h"
 #include "fat-rwlock.h"
 #include "flow.h"
-#include "cmap.h"
-#include "coverage.h"
 #include "hmapx.h"
 #include "latch.h"
 #include "list.h"
@@ -69,6 +68,7 @@
 #include "tnl-ports.h"
 #include "unixctl.h"
 #include "util.h"
+
 #include "openvswitch/vlog.h"
 
 VLOG_DEFINE_THIS_MODULE(dpif_netdev);