Home
last modified time | relevance | path

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

/linux/net/bridge/
H A Dbr_mdb.c386 struct br_port_msg *bpm; in br_mdb_dump() local
391 cb->nlh->nlmsg_seq, RTM_GETMDB, sizeof(*bpm), in br_mdb_dump()
396 bpm = nlmsg_data(nlh); in br_mdb_dump()
397 memset(bpm, 0, sizeof(*bpm)); in br_mdb_dump()
398 bpm->ifindex = dev->ifindex; in br_mdb_dump()
422 struct br_port_msg *bpm; in nlmsg_populate_mdb_fill() local
425 nlh = nlmsg_put(skb, 0, 0, type, sizeof(*bpm), 0); in nlmsg_populate_mdb_fill()
429 bpm = nlmsg_data(nlh); in nlmsg_populate_mdb_fill()
430 memset(bpm, 0, sizeof(*bpm)); in nlmsg_populate_mdb_fill()
431 bpm->family = AF_BRIDGE; in nlmsg_populate_mdb_fill()
[all …]
/linux/drivers/net/vxlan/
H A Dvxlan_mdb.c282 struct br_port_msg *bpm; in vxlan_mdb_dump() local
291 cb->nlh->nlmsg_seq, RTM_NEWMDB, sizeof(*bpm), in vxlan_mdb_dump()
296 bpm = nlmsg_data(nlh); in vxlan_mdb_dump()
297 memset(bpm, 0, sizeof(*bpm)); in vxlan_mdb_dump()
298 bpm->family = AF_BRIDGE; in vxlan_mdb_dump()
299 bpm->ifindex = dev->ifindex; in vxlan_mdb_dump()
1008 struct br_port_msg *bpm; in vxlan_mdb_nlmsg_fill() local
1011 nlh = nlmsg_put(skb, 0, 0, type, sizeof(*bpm), 0); in vxlan_mdb_nlmsg_fill()
1015 bpm = nlmsg_data(nlh); in vxlan_mdb_nlmsg_fill()
1016 memset(bpm, 0, sizeof(*bpm)); in vxlan_mdb_nlmsg_fill()
[all …]
/linux/sound/core/seq/
H A Dseq_queue.c673 int i, bpm; in snd_seq_info_queues_read() local
685 bpm = (60000 * tmr->tempo_base) / tmr->tempo; in snd_seq_info_queues_read()
687 bpm = 0; in snd_seq_info_queues_read()
703 snd_iprintf(buffer, "current BPM : %d\n", bpm); in snd_seq_info_queues_read()
/linux/net/core/
H A Drtnetlink.c6635 struct br_port_msg *bpm; in rtnl_mdb_valid_dump_req() local
6637 bpm = nlmsg_payload(nlh, sizeof(*bpm)); in rtnl_mdb_valid_dump_req()
6638 if (!bpm) { in rtnl_mdb_valid_dump_req()
6643 if (bpm->ifindex) { in rtnl_mdb_valid_dump_req()
6647 if (nlmsg_attrlen(nlh, sizeof(*bpm))) { in rtnl_mdb_valid_dump_req()
6754 struct br_port_msg *bpm; in rtnl_mdb_get() local
6763 bpm = nlmsg_data(nlh); in rtnl_mdb_get()
6764 if (!bpm->ifindex) { in rtnl_mdb_get()
6769 dev = __dev_get_by_index(net, bpm->ifindex); in rtnl_mdb_get()
6857 struct br_port_msg *bpm; in rtnl_mdb_add() local
[all …]