Home
last modified time | relevance | path

Searched refs:NLMSG_ALIGN (Results 1 – 25 of 49) sorted by relevance

12

/Linux-v4.19/tools/include/uapi/linux/
Dnetlink.h90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) ) macro
91 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
93 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
95 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
96 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
Dif_link.h177 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
/Linux-v4.19/include/uapi/linux/
Dnetlink.h90 #define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) ) macro
91 #define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
93 #define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
95 #define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
96 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
Dnetfilter_decnet.h63 #define NFDN_RTMSG(r) ((unsigned char *)(r) + NLMSG_ALIGN(sizeof(struct nf_dn_rtmsg)))
Dif_addr.h67 #define IFA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifaddrmsg))))
Dgenetlink.h19 #define GENL_HDRLEN NLMSG_ALIGN(sizeof(struct genlmsghdr))
Drtnetlink.h350 #define RTM_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct rtmsg))))
593 #define TCA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcmsg))))
730 #define TA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct tcamsg))))
Dtipc_config.h372 #define TIPC_GENL_HDRLEN NLMSG_ALIGN(sizeof(struct tipc_genlmsghdr))
Dif_link.h177 #define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
/Linux-v4.19/tools/testing/selftests/net/
Dudpgso.c373 char data[NLMSG_ALIGN(sizeof(*nh)) + in set_route_mtu()
374 NLMSG_ALIGN(sizeof(*rt)) + in set_route_mtu()
375 NLMSG_ALIGN(RTA_LENGTH(sizeof(addr6))) + in set_route_mtu()
376 NLMSG_ALIGN(RTA_LENGTH(sizeof(int))) + in set_route_mtu()
377 NLMSG_ALIGN(RTA_LENGTH(0) + RTA_LENGTH(sizeof(int)))]; in set_route_mtu()
391 off += NLMSG_ALIGN(sizeof(*nh)); in set_route_mtu()
400 off += NLMSG_ALIGN(sizeof(*rt)); in set_route_mtu()
409 off += NLMSG_ALIGN(rta->rta_len); in set_route_mtu()
415 off += NLMSG_ALIGN(rta->rta_len); in set_route_mtu()
421 off += NLMSG_ALIGN(rta->rta_len); in set_route_mtu()
/Linux-v4.19/net/decnet/netfilter/
Ddn_rtmsg.c42 size = NLMSG_ALIGN(rt_skb->len) + in dnrmg_build_message()
43 NLMSG_ALIGN(sizeof(struct nf_dn_rtmsg)); in dnrmg_build_message()
/Linux-v4.19/include/uapi/linux/netfilter/
Dnfnetlink_compat.h60 + NLMSG_ALIGN(sizeof(struct nfgenmsg))))
/Linux-v4.19/drivers/scsi/
Dscsi_netlink.c64 rlen = NLMSG_ALIGN(nlh->nlmsg_len); in scsi_nl_rcv_msg()
/Linux-v4.19/include/net/
Dnetlink.h297 return NLMSG_ALIGN(nlmsg_msg_size(payload)); in nlmsg_total_size()
336 return (struct nlattr *) (data + NLMSG_ALIGN(hdrlen)); in nlmsg_attrdata()
346 return nlmsg_len(nlh) - NLMSG_ALIGN(hdrlen); in nlmsg_attrlen()
372 int totlen = NLMSG_ALIGN(nlh->nlmsg_len); in nlmsg_next()
Dgenetlink.h344 return NLMSG_ALIGN(genlmsg_msg_size(payload)); in genlmsg_total_size()
/Linux-v4.19/net/phonet/
Dpn_netlink.c43 skb = nlmsg_new(NLMSG_ALIGN(sizeof(struct ifaddrmsg)) + in phonet_address_notify()
209 skb = nlmsg_new(NLMSG_ALIGN(sizeof(struct ifaddrmsg)) + in rtm_phonet_notify()
/Linux-v4.19/net/xfrm/
Dxfrm_user.c1076 return NLMSG_ALIGN(4) in xfrm_spdinfo_msgsize()
1203 return NLMSG_ALIGN(4) in xfrm_sadinfo_msgsize()
1952 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id)) in xfrm_aevent_msgsize()
2429 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id)) in xfrm_migrate_msgsize()
2679 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire)) in xfrm_expire_msgsize()
2750 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush)); in xfrm_notify_sa_flush()
2831 len += NLMSG_ALIGN(headlen); in xfrm_notify_sa()
2900 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire)) in xfrm_acquire_msgsize()
3026 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire)) in xfrm_polexpire_msgsize()
3100 len += NLMSG_ALIGN(headlen); in xfrm_notify_policy()
[all …]
/Linux-v4.19/drivers/infiniband/core/
Dnetlink.c247 msglen = NLMSG_ALIGN(nlh->nlmsg_len); in rdma_nl_rcv_skb()
Daddr.c163 len += NLMSG_ALIGN(sizeof(*header)); in ib_nl_ip_send_msg()
177 header = skb_put(skb, NLMSG_ALIGN(sizeof(*header))); in ib_nl_ip_send_msg()
/Linux-v4.19/net/netfilter/
Dnfnetlink.c469 msglen = NLMSG_ALIGN(nlh->nlmsg_len); in nfnetlink_rcv_batch()
516 msglen = NLMSG_ALIGN(nlh->nlmsg_len); in nfnetlink_rcv_skb_batch()
/Linux-v4.19/net/core/
Dsock_diag.c114 return NLMSG_ALIGN(sizeof(struct inet_diag_msg) in sock_diag_nlmsg_size()
/Linux-v4.19/net/bridge/
Dbr_mdb.c256 return NLMSG_ALIGN(sizeof(struct br_port_msg)) in rtnl_mdb_nlmsg_size()
450 return NLMSG_ALIGN(sizeof(struct br_port_msg)) in rtnl_rtr_nlmsg_size()
/Linux-v4.19/tools/accounting/
Dgetdelays.c141 msg.n.nlmsg_len += NLMSG_ALIGN(na->nla_len); in send_cmd()
/Linux-v4.19/net/ipv6/
Daddrlabel.c489 return NLMSG_ALIGN(sizeof(struct ifaddrlblmsg)) in ip6addrlbl_msgsize()
/Linux-v4.19/net/netlink/
Daf_netlink.c2161 nlh = skb_put(skb, NLMSG_ALIGN(size)); in __nlmsg_put()
2167 if (!__builtin_constant_p(size) || NLMSG_ALIGN(size) - size != 0) in __nlmsg_put()
2168 memset(nlmsg_data(nlh) + len, 0, NLMSG_ALIGN(size) - size); in __nlmsg_put()
2463 msglen = NLMSG_ALIGN(nlh->nlmsg_len); in netlink_rcv_skb()

12