Home
last modified time | relevance | path

Searched refs:brport_attr (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.4/net/bridge/
Dbr_sysfs_if.c294 struct brport_attribute *brport_attr = to_brport_attr(attr); in brport_show() local
297 if (!brport_attr->show) in brport_show()
300 return brport_attr->show(p, buf); in brport_show()
307 struct brport_attribute *brport_attr = to_brport_attr(attr); in brport_store() local
319 if (brport_attr->store_raw) { in brport_store()
328 ret = brport_attr->store_raw(p, buf_copy); in brport_store()
331 } else if (brport_attr->store) { in brport_store()
336 ret = brport_attr->store(p, val); in brport_store()