Lines Matching defs:new
571 * will see the new packet type (until the next received packet).
779 /* Deprecated for new users, call netdev_get_by_name() instead */
866 /* Deprecated for new users, call netdev_get_by_index() instead */
1760 * to the new notifier to allow device to have a race free
1880 * to the new notifier to allow device to have a race free
2545 /* Need to allocate new map to store tx-queue on this CPU's/rx-queue's
2577 /* fill in the new device map from the old device map */
5637 /* start new sublist */
5707 struct bpf_prog *new = xdp->prog;
5712 rcu_assign_pointer(dev->xdp_prog, new);
5716 if (old && !new) {
5718 } else if (new && !old) {
6055 unsigned long new, val = READ_ONCE(n->state);
6060 new = val | NAPIF_STATE_SCHED;
6066 * new |= NAPIF_STATE_MISSED;
6068 new |= (val & NAPIF_STATE_SCHED) / NAPIF_STATE_SCHED *
6070 } while (!try_cmpxchg(&n->state, &val, new));
6097 unsigned long flags, val, new, timeout = 0;
6143 new = val & ~(NAPIF_STATE_MISSED | NAPIF_STATE_SCHED |
6151 new |= (val & NAPIF_STATE_MISSED) / NAPIF_STATE_MISSED *
6153 } while (!try_cmpxchg(&n->state, &val, new));
6232 * Ideally, a new ndo_busy_poll_stop() could avoid another round.
6469 unsigned long val, new;
6481 new = val | NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC;
6482 new &= ~(NAPIF_STATE_THREADED | NAPIF_STATE_PREFER_BUSY_POLL);
6483 } while (!try_cmpxchg(&n->state, &val, new));
6500 unsigned long new, val = READ_ONCE(n->state);
6505 new = val & ~(NAPIF_STATE_SCHED | NAPIF_STATE_NPSVC);
6507 new |= NAPIF_STATE_THREADED;
6508 } while (!try_cmpxchg(&n->state, &val, new));
7767 * @upper_dev: new upper device
7792 * @upper_dev: new upper device
7853 * @upper_dev: new upper device
8746 * @new_mtu: new transfer unit
8806 * @new_len: new tx queue length
8848 * @addr: new address
8869 * @sa: new address
8946 * @new_carrier: new value
9065 * @proto_down: new value
9314 /* put effective new program into new_prog */
9573 * @fd: new program fd or negative value to clear
9620 * Allocate a ifindex for a new device. Caller must either use the ifindex
9624 * Return: a suitable unique value for a new device interface number or -errno.
10255 /* Notify protocols, that a new device appeared. */
11117 * to a new network namespace. On success 0 is returned, on
11171 /* If there is an ifindex conflict assign a new one */
11227 /* Send a netdev-add uevent to the new namespace */
11247 /* Notify protocols, that a new device appeared. */
11332 * @one: new feature set
11335 * Computes a new feature set after adding a device with feature set
11337 * enable anything that is off in @mask. Returns the new feature set.