X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=vswitchd%2Fproc-net-compat.c;h=3b7596ad91b59a79d539b27ea319f4a51788ba3a;hb=7aec165dbc4690c8c2c703d142e2f017bb851d31;hp=6a8f8756e2f8b12716c7c3520ea6afae08152768;hpb=5136ce492c414f377f7be9ae32b259abb9f76580;p=openvswitch diff --git a/vswitchd/proc-net-compat.c b/vswitchd/proc-net-compat.c index 6a8f8756..3b7596ad 100644 --- a/vswitchd/proc-net-compat.c +++ b/vswitchd/proc-net-compat.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009, 2010 Nicira Networks +/* Copyright (c) 2009, 2010, 2011 Nicira Networks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -25,6 +25,7 @@ #include "dynamic-string.h" #include "hash.h" #include "netlink-protocol.h" +#include "netlink-socket.h" #include "netlink.h" #include "ofpbuf.h" #include "openvswitch/brcompat-netlink.h" @@ -33,7 +34,7 @@ #include "svec.h" #include "vlog.h" -VLOG_DEFINE_THIS_MODULE(proc_net_compat) +VLOG_DEFINE_THIS_MODULE(proc_net_compat); /* Netlink socket to bridge compatibility kernel module. */ static struct nl_sock *brc_sock; @@ -58,7 +59,7 @@ proc_net_compat_init(void) return retval; } - retval = nl_sock_create(NETLINK_GENERIC, 0, 0, 0, &brc_sock); + retval = nl_sock_create(NETLINK_GENERIC, &brc_sock); if (retval) { return retval; } @@ -248,8 +249,7 @@ proc_net_compat_update_vlan(const char *tagged_dev, const char *trunk_dev, /* 'tagged_dev' is not attached to any compat_vlan. Find the * compat_vlan corresponding to (trunk_dev,vid) to attach it to, or * create a new compat_vlan if none exists for (trunk_dev,vid). */ - HMAP_FOR_EACH_WITH_HASH (vlan, struct compat_vlan, trunk_node, - hash_vlan(trunk_dev, vid), + HMAP_FOR_EACH_WITH_HASH (vlan, trunk_node, hash_vlan(trunk_dev, vid), &vlans_by_trunk) { if (!strcmp(trunk_dev, vlan->trunk_dev) && vid == vlan->vid) { break; @@ -340,7 +340,7 @@ update_vlan_config(void) ds_init(&ds); ds_put_cstr(&ds, "VLAN Dev name | VLAN ID\n" "Name-Type: VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD\n"); - HMAP_FOR_EACH (vlan, struct compat_vlan, trunk_node, &vlans_by_trunk) { + HMAP_FOR_EACH (vlan, trunk_node, &vlans_by_trunk) { ds_put_format(&ds, "%-15s| %d | %s\n", vlan->vlan_dev, vlan->vid, vlan->trunk_dev); }