X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fnetdev-provider.h;h=4181758fa762a2c9c2e3837ed5f5a15a37a95d9b;hb=bfa68a2b1fc49a8755748548836e92a5bae7bcb3;hp=da0ad45f410f44e2ec95b1d494169be4d4d66f16;hpb=ea763e0e2828c35660310f8b7791781b17b30cbd;p=openvswitch diff --git a/lib/netdev-provider.h b/lib/netdev-provider.h index da0ad45f..4181758f 100644 --- a/lib/netdev-provider.h +++ b/lib/netdev-provider.h @@ -29,11 +29,6 @@ extern "C" { #endif -struct arg { - char *key; - char *value; -}; - /* A network device (e.g. an Ethernet device). * * This structure should be treated as opaque by network device @@ -44,11 +39,11 @@ struct netdev_dev { this device. */ int ref_cnt; /* Times this devices was opened. */ struct shash_node *node; /* Pointer to element in global map. */ - struct arg *args; /* Argument list from last config. */ - int n_args; /* Number of arguments in 'args'. */ + struct shash args; /* Argument list from last config. */ }; void netdev_dev_init(struct netdev_dev *, const char *name, + const struct shash *args, const struct netdev_class *); void netdev_dev_uninit(struct netdev_dev *, bool destroy); const char *netdev_dev_get_type(const struct netdev_dev *); @@ -143,12 +138,12 @@ struct netdev_class { * called. */ void (*destroy)(struct netdev_dev *netdev_dev); - /* Reconfigures the device 'netdev_dev' with 'args'. + /* Changes the device 'netdev_dev''s configuration to 'args'. * * If this netdev class does not support reconfiguring a netdev * device, this may be a null pointer. */ - int (*reconfigure)(struct netdev_dev *netdev_dev, const struct shash *args); + int (*set_config)(struct netdev_dev *netdev_dev, const struct shash *args); /* Attempts to open a network device. On success, sets 'netdevp' * to the new network device. @@ -266,6 +261,14 @@ struct netdev_class { */ int (*get_carrier)(const struct netdev *netdev, bool *carrier); + /* Sets 'miimon' to true if 'netdev' is up according to its MII. If + * 'netdev' does not support MII, may fall back to another method or return + * EOPNOTSUPP. + * + * This function may be set to null if it would always return EOPNOTSUPP. + */ + int (*get_miimon)(const struct netdev *netdev, bool *miimon); + /* Retrieves current device stats for 'netdev' into 'stats'. * * A network device that supports some statistics but not others, it should @@ -287,7 +290,7 @@ struct netdev_class { * * This function may be set to null if it would always return EOPNOTSUPP. */ - int (*get_features)(struct netdev *netdev, + int (*get_features)(const struct netdev *netdev, uint32_t *current, uint32_t *advertised, uint32_t *supported, uint32_t *peer);