X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=vswitchd%2Fproc-net-compat.c;h=3b5c0ca92561473d462b0dffbc18cb07a80ecc81;hb=6e8e271c0dc5e931d64436dea6643eb25527b1d0;hp=8e8dd237db8e0f17e93b4679543306e8521aa63a;hpb=a14bc59fb8f27db193d74662dc9c5cb8237177ef;p=openvswitch diff --git a/vswitchd/proc-net-compat.c b/vswitchd/proc-net-compat.c index 8e8dd237..3b5c0ca9 100644 --- a/vswitchd/proc-net-compat.c +++ b/vswitchd/proc-net-compat.c @@ -1,4 +1,4 @@ -/* Copyright (c) 2009 Nicira Networks +/* Copyright (c) 2009, 2010 Nicira Networks * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -15,6 +15,8 @@ #include #include "proc-net-compat.h" + +#ifdef HAVE_NETLINK #include #include #include @@ -154,6 +156,12 @@ proc_net_compat_update_bond(const char *name, const struct compat_bond *bond) "\n" "Source load balancing info:\n", bond->up ? "up" : "down", bond->updelay, bond->downdelay); + + for (i = 0; i < bond->n_hashes; i++) { + const struct compat_bond_hash *cbh = &bond->hashes[i]; + ds_put_format(&ds, " [%03d] = %s\n", cbh->hash, cbh->netdev_name); + } + for (i = 0; i < bond->n_slaves; i++) { const struct compat_bond_slave *slave = &bond->slaves[i]; ds_put_format( @@ -250,7 +258,7 @@ proc_net_compat_update_vlan(const char *tagged_dev, const char *trunk_dev, } if (!vlan) { /* Create a new compat_vlan for (trunk_dev,vid). */ - vlan = xcalloc(1, sizeof *vlan); + vlan = xzalloc(sizeof *vlan); vlan->trunk_dev = xstrdup(trunk_dev); vlan->vid = vid; vlan->vlan_dev = xasprintf("%s.%d", trunk_dev, vid); @@ -340,3 +348,25 @@ update_vlan_config(void) set_proc_file("net/vlan", "config", ds_cstr(&ds)); ds_destroy(&ds); } +#else /* !HAVE_NETLINK */ +#include "compiler.h" + +int +proc_net_compat_init(void) +{ + return 0; +} + +void +proc_net_compat_update_bond(const char *name OVS_UNUSED, + const struct compat_bond *bond OVS_UNUSED) +{ +} + +void +proc_net_compat_update_vlan(const char *tagged_dev OVS_UNUSED, + const char *trunk_dev OVS_UNUSED, + int vid OVS_UNUSED) +{ +} +#endif /* !HAVE_NETLINK */