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.c281 struct br_port_msg *bpm; in vxlan_mdb_dump() local
290 cb->nlh->nlmsg_seq, RTM_NEWMDB, sizeof(*bpm), in vxlan_mdb_dump()
295 bpm = nlmsg_data(nlh); in vxlan_mdb_dump()
296 memset(bpm, 0, sizeof(*bpm)); in vxlan_mdb_dump()
297 bpm->family = AF_BRIDGE; in vxlan_mdb_dump()
298 bpm->ifindex = dev->ifindex; in vxlan_mdb_dump()
997 struct br_port_msg *bpm; in vxlan_mdb_nlmsg_fill() local
1000 nlh = nlmsg_put(skb, 0, 0, type, sizeof(*bpm), 0); in vxlan_mdb_nlmsg_fill()
1004 bpm = nlmsg_data(nlh); in vxlan_mdb_nlmsg_fill()
1005 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.c6461 struct br_port_msg *bpm; in rtnl_mdb_valid_dump_req() local
6463 bpm = nlmsg_payload(nlh, sizeof(*bpm)); in rtnl_mdb_valid_dump_req()
6464 if (!bpm) { in rtnl_mdb_valid_dump_req()
6469 if (bpm->ifindex) { in rtnl_mdb_valid_dump_req()
6473 if (nlmsg_attrlen(nlh, sizeof(*bpm))) { in rtnl_mdb_valid_dump_req()
6580 struct br_port_msg *bpm; in rtnl_mdb_get() local
6589 bpm = nlmsg_data(nlh); in rtnl_mdb_get()
6590 if (!bpm->ifindex) { in rtnl_mdb_get()
6595 dev = __dev_get_by_index(net, bpm->ifindex); in rtnl_mdb_get()
6683 struct br_port_msg *bpm; in rtnl_mdb_add() local
[all …]