root_path_cost     58 include/uapi/linux/if_bridge.h 	__u32 root_path_cost;
root_path_cost    132 net/bridge/br_ioctl.c 		b.root_path_cost = br->root_path_cost;
root_path_cost   1428 net/bridge/br_netlink.c 	    nla_put_u32(skb, IFLA_BR_ROOT_PATH_COST, br->root_path_cost) ||
root_path_cost    362 net/bridge/br_private.h 	u32				root_path_cost;
root_path_cost     32 net/bridge/br_private_stp.h 	int		root_path_cost;
root_path_cost    148 net/bridge/br_stp.c 		br->root_path_cost = 0;
root_path_cost    152 net/bridge/br_stp.c 		br->root_path_cost = p->designated_cost + p->path_cost;
root_path_cost    187 net/bridge/br_stp.c 	bpdu.root_path_cost = br->root_path_cost;
root_path_cost    217 net/bridge/br_stp.c 	p->designated_cost = bpdu->root_path_cost;
root_path_cost    262 net/bridge/br_stp.c 	if (br->root_path_cost < p->designated_cost)
root_path_cost    264 net/bridge/br_stp.c 	else if (br->root_path_cost > p->designated_cost)
root_path_cost    304 net/bridge/br_stp.c 	if (bpdu->root_path_cost < p->designated_cost)
root_path_cost    306 net/bridge/br_stp.c 	else if (bpdu->root_path_cost > p->designated_cost)
root_path_cost    386 net/bridge/br_stp.c 	p->designated_cost = br->root_path_cost;
root_path_cost    100 net/bridge/br_stp_bpdu.c 	buf[13] = (bpdu->root_path_cost >> 24) & 0xFF;
root_path_cost    101 net/bridge/br_stp_bpdu.c 	buf[14] = (bpdu->root_path_cost >> 16) & 0xFF;
root_path_cost    102 net/bridge/br_stp_bpdu.c 	buf[15] = (bpdu->root_path_cost >> 8) & 0xFF;
root_path_cost    103 net/bridge/br_stp_bpdu.c 	buf[16] = bpdu->root_path_cost & 0xFF;
root_path_cost    204 net/bridge/br_stp_bpdu.c 		bpdu.root_path_cost =
root_path_cost    214 net/bridge/br_sysfs_br.c 	return sprintf(buf, "%d\n", to_bridge(d)->root_path_cost);
root_path_cost    216 net/bridge/br_sysfs_br.c static DEVICE_ATTR_RO(root_path_cost);