netdev: Remove unused 'netdev' parameter from dpif_add_router().
authorBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 22:59:42 +0000 (14:59 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 8 Jan 2009 22:59:42 +0000 (14:59 -0800)
Found by -Wunused-parameter.

lib/dhcp-client.c
lib/netdev.c
lib/netdev.h

index 460fedf90f8f12812081efab1b6ae40217e7e9f4..77d381902e7726a4e9bfe19effc4acfe00299db4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
+/* Copyright (c) 2008, 2009 The Board of Trustees of The Leland Stanford
  * Junior University
  *
  * We are making the OpenFlow specification and associated documentation
@@ -423,7 +423,7 @@ dhclient_configure_netdev(struct dhclient *cli)
     }
 
     if (!error && router.s_addr) {
-        error = netdev_add_router(cli->netdev, router);
+        error = netdev_add_router(router);
         if (error) {
             VLOG_ERR("failed to add default route to "IP_FMT" on %s: %s",
                      IP_ARGS(&router), netdev_get_name(cli->netdev),
index 08afc390a2ceecfc9362bc46bf232cba16ebe77f..95adad78630455b9ed66b3ca1bb680edc16fb50f 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
+/* Copyright (c) 2008, 2009 The Board of Trustees of The Leland Stanford
  * Junior University
  * 
  * We are making the OpenFlow specification and associated documentation
@@ -793,9 +793,9 @@ netdev_set_in4(struct netdev *netdev, struct in_addr addr, struct in_addr mask)
     return error;
 }
 
-/* Adds 'router' as a default gateway for 'netdev''s IP address. */
+/* Adds 'router' as a default IP gateway. */
 int
-netdev_add_router(struct netdev *netdev, struct in_addr router)
+netdev_add_router(struct in_addr router)
 {
     struct in_addr any = { INADDR_ANY };
     struct rtentry rt;
index 28a96e44f6638f5133c8b0af4a81e936827759ac..d7afd83aaa4321ed30e0d129cfb0e07daf56a583 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
+/* Copyright (c) 2008, 2009 The Board of Trustees of The Leland Stanford
  * Junior University
  * 
  * We are making the OpenFlow specification and associated documentation
@@ -83,7 +83,7 @@ int netdev_get_link_status(const struct netdev *);
 uint32_t netdev_get_features(struct netdev *, int);
 bool netdev_get_in4(const struct netdev *, struct in_addr *);
 int netdev_set_in4(struct netdev *, struct in_addr addr, struct in_addr mask);
-int netdev_add_router(struct netdev *, struct in_addr router);
+int netdev_add_router(struct in_addr router);
 bool netdev_get_in6(const struct netdev *, struct in6_addr *);
 int netdev_get_flags(const struct netdev *, enum netdev_flags *);
 int netdev_set_flags(struct netdev *, enum netdev_flags, bool permanent);