vport-internal_dev.h 442 B

1234567891011121314151617
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (c) 2007-2011 Nicira, Inc.
  4. */
  5. #ifndef VPORT_INTERNAL_DEV_H
  6. #define VPORT_INTERNAL_DEV_H 1
  7. #include "datapath.h"
  8. #include "vport.h"
  9. int ovs_is_internal_dev(const struct net_device *);
  10. struct vport *ovs_internal_dev_get_vport(struct net_device *);
  11. int ovs_internal_dev_rtnl_link_register(void);
  12. void ovs_internal_dev_rtnl_link_unregister(void);
  13. #endif /* vport-internal_dev.h */