hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/net/openvswitch/vport-geneve.c
....@@ -1,10 +1,6 @@
1
+// SPDX-License-Identifier: GPL-2.0-or-later
12 /*
23 * Copyright (c) 2014 Nicira, Inc.
3
- *
4
- * This program is free software; you can redistribute it and/or
5
- * modify it under the terms of the GNU General Public License
6
- * as published by the Free Software Foundation; either version
7
- * 2 of the License, or (at your option) any later version.
84 */
95
106 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
....@@ -93,7 +89,7 @@
9389 return ERR_CAST(dev);
9490 }
9591
96
- err = dev_change_flags(dev, dev->flags | IFF_UP);
92
+ err = dev_change_flags(dev, dev->flags | IFF_UP, NULL);
9793 if (err < 0) {
9894 rtnl_delete_link(dev);
9995 rtnl_unlock();