• Home
  • Raw
  • Download

Lines Matching refs:value

222 	u8 value;  in dcbnl_getpfccfg()  local
251 &value); in dcbnl_getpfccfg()
252 ret = nla_put_u8(skb, i, value); in dcbnl_getpfccfg()
281 u8 value; in dcbnl_getcap() local
309 if (!netdev->dcbnl_ops->getcap(netdev, i, &value)) { in dcbnl_getcap()
310 ret = nla_put_u8(skb, i, value); in dcbnl_getcap()
326 u8 value; in dcbnl_getnumtcs() local
354 ret = netdev->dcbnl_ops->getnumtcs(netdev, i, &value); in dcbnl_getnumtcs()
356 ret = nla_put_u8(skb, i, value); in dcbnl_getnumtcs()
374 u8 value; in dcbnl_setnumtcs() local
393 value = nla_get_u8(data[i]); in dcbnl_setnumtcs()
395 ret = netdev->dcbnl_ops->setnumtcs(netdev, i, value); in dcbnl_setnumtcs()
416 u8 value; in dcbnl_setpfcstate() local
424 value = nla_get_u8(tb[DCB_ATTR_PFC_STATE]); in dcbnl_setpfcstate()
426 netdev->dcbnl_ops->setpfcstate(netdev, value); in dcbnl_setpfcstate()
702 u8 value; in dcbnl_setstate() local
710 value = nla_get_u8(tb[DCB_ATTR_STATE]); in dcbnl_setstate()
713 netdev->dcbnl_ops->setstate(netdev, value)); in dcbnl_setstate()
722 u8 value; in dcbnl_setpfccfg() local
739 value = nla_get_u8(data[i]); in dcbnl_setpfccfg()
741 data[i]->nla_type - DCB_PFC_UP_ATTR_0, value); in dcbnl_setpfccfg()
1233 u8 value; in dcbnl_cee_fill() local
1263 ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0, &value); in dcbnl_cee_fill()
1264 if (nla_put_u8(skb, i, value)) in dcbnl_cee_fill()
1319 if (!ops->getfeatcfg(netdev, i, &value) && in dcbnl_cee_fill()
1320 nla_put_u8(skb, i, value)) in dcbnl_cee_fill()
1584 u8 value; in dcbnl_setdcbx() local
1592 value = nla_get_u8(tb[DCB_ATTR_DCBX]); in dcbnl_setdcbx()
1595 netdev->dcbnl_ops->setdcbx(netdev, value)); in dcbnl_setdcbx()
1602 u8 value; in dcbnl_getfeatcfg() local
1629 ret = netdev->dcbnl_ops->getfeatcfg(netdev, i, &value); in dcbnl_getfeatcfg()
1631 ret = nla_put_u8(skb, i, value); in dcbnl_getfeatcfg()
1649 u8 value; in dcbnl_setfeatcfg() local
1668 value = nla_get_u8(data[i]); in dcbnl_setfeatcfg()
1670 ret = netdev->dcbnl_ops->setfeatcfg(netdev, i, value); in dcbnl_setfeatcfg()