• Home
  • Raw
  • Download

Lines Matching refs:value

236 	u8 value;  in dcbnl_getpfccfg()  local
265 &value); in dcbnl_getpfccfg()
266 ret = nla_put_u8(skb, i, value); in dcbnl_getpfccfg()
295 u8 value; in dcbnl_getcap() local
322 if (!netdev->dcbnl_ops->getcap(netdev, i, &value)) { in dcbnl_getcap()
323 ret = nla_put_u8(skb, i, value); in dcbnl_getcap()
339 u8 value; in dcbnl_getnumtcs() local
366 ret = netdev->dcbnl_ops->getnumtcs(netdev, i, &value); in dcbnl_getnumtcs()
368 ret = nla_put_u8(skb, i, value); in dcbnl_getnumtcs()
386 u8 value; in dcbnl_setnumtcs() local
404 value = nla_get_u8(data[i]); in dcbnl_setnumtcs()
406 ret = netdev->dcbnl_ops->setnumtcs(netdev, i, value); in dcbnl_setnumtcs()
427 u8 value; in dcbnl_setpfcstate() local
435 value = nla_get_u8(tb[DCB_ATTR_PFC_STATE]); in dcbnl_setpfcstate()
437 netdev->dcbnl_ops->setpfcstate(netdev, value); in dcbnl_setpfcstate()
709 u8 value; in dcbnl_setstate() local
717 value = nla_get_u8(tb[DCB_ATTR_STATE]); in dcbnl_setstate()
720 netdev->dcbnl_ops->setstate(netdev, value)); in dcbnl_setstate()
729 u8 value; in dcbnl_setpfccfg() local
746 value = nla_get_u8(data[i]); in dcbnl_setpfccfg()
748 data[i]->nla_type - DCB_PFC_UP_ATTR_0, value); in dcbnl_setpfccfg()
1225 u8 value; in dcbnl_cee_fill() local
1254 ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0, &value); in dcbnl_cee_fill()
1255 if (nla_put_u8(skb, i, value)) in dcbnl_cee_fill()
1309 if (!ops->getfeatcfg(netdev, i, &value) && in dcbnl_cee_fill()
1310 nla_put_u8(skb, i, value)) in dcbnl_cee_fill()
1556 u8 value; in dcbnl_setdcbx() local
1564 value = nla_get_u8(tb[DCB_ATTR_DCBX]); in dcbnl_setdcbx()
1567 netdev->dcbnl_ops->setdcbx(netdev, value)); in dcbnl_setdcbx()
1574 u8 value; in dcbnl_getfeatcfg() local
1600 ret = netdev->dcbnl_ops->getfeatcfg(netdev, i, &value); in dcbnl_getfeatcfg()
1602 ret = nla_put_u8(skb, i, value); in dcbnl_getfeatcfg()
1620 u8 value; in dcbnl_setfeatcfg() local
1638 value = nla_get_u8(data[i]); in dcbnl_setfeatcfg()
1640 ret = netdev->dcbnl_ops->setfeatcfg(netdev, i, value); in dcbnl_setfeatcfg()