dp_notify.c 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /*
  2. * Copyright (c) 2007-2011 Nicira Networks.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of version 2 of the GNU General Public
  6. * License as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful, but
  9. * WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. * General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program; if not, write to the Free Software
  15. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
  16. * 02110-1301, USA
  17. */
  18. #include <linux/netdevice.h>
  19. #include <net/genetlink.h>
  20. #include "datapath.h"
  21. #include "vport-internal_dev.h"
  22. #include "vport-netdev.h"
  23. static int dp_device_event(struct notifier_block *unused, unsigned long event,
  24. void *ptr)
  25. {
  26. struct net_device *dev = ptr;
  27. struct vport *vport;
  28. if (ovs_is_internal_dev(dev))
  29. vport = ovs_internal_dev_get_vport(dev);
  30. else
  31. vport = ovs_netdev_get_vport(dev);
  32. if (!vport)
  33. return NOTIFY_DONE;
  34. switch (event) {
  35. case NETDEV_UNREGISTER:
  36. if (!ovs_is_internal_dev(dev)) {
  37. struct sk_buff *notify;
  38. notify = ovs_vport_cmd_build_info(vport, 0, 0,
  39. OVS_VPORT_CMD_DEL);
  40. ovs_dp_detach_port(vport);
  41. if (IS_ERR(notify)) {
  42. netlink_set_err(init_net.genl_sock, 0,
  43. ovs_dp_vport_multicast_group.id,
  44. PTR_ERR(notify));
  45. break;
  46. }
  47. genlmsg_multicast(notify, 0, ovs_dp_vport_multicast_group.id,
  48. GFP_KERNEL);
  49. }
  50. break;
  51. }
  52. return NOTIFY_DONE;
  53. }
  54. struct notifier_block ovs_dp_device_notifier = {
  55. .notifier_call = dp_device_event
  56. };