rtnetlink.c (17dd0ec470f97518893a5ed7160a842a35482fb4) rtnetlink.c (d116ffc770d80f241f0d750d355205d83a9eca5a)
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

--- 2587 unchanged lines hidden (view full) ---

2596 linkinfo[IFLA_INFO_SLAVE_DATA],
2597 m_ops->slave_policy,
2598 NULL);
2599 if (err < 0)
2600 return err;
2601 slave_data = slave_attr;
2602 }
2603 if (m_ops->slave_validate) {
1/*
2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
5 *
6 * Routing netlink socket interface: protocol independent part.
7 *
8 * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru>

--- 2587 unchanged lines hidden (view full) ---

2596 linkinfo[IFLA_INFO_SLAVE_DATA],
2597 m_ops->slave_policy,
2598 NULL);
2599 if (err < 0)
2600 return err;
2601 slave_data = slave_attr;
2602 }
2603 if (m_ops->slave_validate) {
2604 err = m_ops->slave_validate(tb, slave_data);
2604 err = m_ops->slave_validate(tb, slave_data,
2605 extack);
2605 if (err < 0)
2606 return err;
2607 }
2608 }
2609
2610 if (dev) {
2611 int status = 0;
2612

--- 1707 unchanged lines hidden ---
2606 if (err < 0)
2607 return err;
2608 }
2609 }
2610
2611 if (dev) {
2612 int status = 0;
2613

--- 1707 unchanged lines hidden ---