All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH net-next 0/9] netlink: align attributes when needed (patchset #1)
@ 2016-04-22 15:31 Nicolas Dichtel
  2016-04-22 15:31 ` [PATCH net-next 1/9] libnl: fix help of _64bit functions Nicolas Dichtel
                   ` (9 more replies)
  0 siblings, 10 replies; 36+ messages in thread
From: Nicolas Dichtel @ 2016-04-22 15:31 UTC (permalink / raw)
  To: netdev
  Cc: davem, linux-kernel, linux-wpan, aar, pablo, kaber, kadlec,
	pshelar, kuznet, jmorris, yoshfuji, netfilter-devel, dev,
	steffen.klassert, herbert, bsingharora


This is the continuation of the work done to align netlink attributes
when these attributes contain some 64-bit fields.

David, if the third patch is too big (or maybe the series), I can split it.
Just tell me what you prefer.

 include/linux/netfilter/ipset/ip_set.h             |  9 ++--
 include/net/netlink.h                              | 60 ++++++++++++++++------
 include/net/nl802154.h                             |  6 +++
 include/uapi/linux/fib_rules.h                     |  1 +
 include/uapi/linux/l2tp.h                          |  1 +
 include/uapi/linux/lwtunnel.h                      |  2 +
 include/uapi/linux/neighbour.h                     |  2 +
 include/uapi/linux/netfilter/ipset/ip_set.h        |  1 +
 include/uapi/linux/netfilter/nf_tables.h           |  8 +++
 include/uapi/linux/netfilter/nfnetlink_acct.h      |  1 +
 include/uapi/linux/netfilter/nfnetlink_conntrack.h |  3 ++
 include/uapi/linux/openvswitch.h                   |  1 +
 include/uapi/linux/tcp_metrics.h                   |  1 +
 include/uapi/linux/xfrm.h                          |  1 +
 kernel/taskstats.c                                 | 37 ++-----------
 lib/nlattr.c                                       |  8 ++-
 net/core/fib_rules.c                               |  4 +-
 net/core/neighbour.c                               | 19 +++----
 net/ieee802154/nl802154.c                          | 13 +++--
 net/ipv4/ip_tunnel_core.c                          | 10 ++--
 net/ipv4/tcp_metrics.c                             |  6 ++-
 net/l2tp/l2tp_netlink.c                            |  3 +-
 net/netfilter/nf_conntrack_netlink.c               | 18 ++++---
 net/netfilter/nf_conntrack_proto_dccp.c            |  4 +-
 net/netfilter/nf_tables_api.c                      | 24 ++++++---
 net/netfilter/nf_tables_trace.c                    |  5 +-
 net/netfilter/nfnetlink_acct.c                     |  9 ++--
 net/netfilter/nft_counter.c                        |  6 ++-
 net/netfilter/nft_dynset.c                         |  3 +-
 net/netfilter/nft_limit.c                          |  6 ++-
 net/openvswitch/flow_netlink.c                     |  5 +-
 net/xfrm/xfrm_user.c                               | 10 ++--
 32 files changed, 178 insertions(+), 109 deletions(-)

Comments are welcomed,
Regards,
Nicolas

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2016-04-27 16:56 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-22 15:31 [PATCH net-next 0/9] netlink: align attributes when needed (patchset #1) Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 1/9] libnl: fix help of _64bit functions Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 2/9] libnl: nla_put_le64(): align on a 64-bit area Nicolas Dichtel
2016-04-22 16:51   ` Eric Dumazet
2016-04-22 16:51     ` Eric Dumazet
2016-04-23 17:05     ` Alexander Aring
2016-04-23 17:28       ` Alexander Aring
2016-04-25  7:41         ` Nicolas Dichtel
2016-04-25  7:41           ` Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 3/9] libnl: nla_put_be64(): " Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 4/9] libnl: nla_put_net64(): " Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 5/9] libnl: nla_put_s64(): " Nicolas Dichtel
2016-04-22 15:31   ` Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 6/9] libnl: nla_put_msecs(): " Nicolas Dichtel
2016-04-22 15:31   ` Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 7/9] libnl: add nla_put_u64_64bit() helper Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 8/9] xfrm: align nlattr properly when needed Nicolas Dichtel
2016-04-22 15:31 ` [PATCH net-next 9/9] taskstats: use the libnl API to align nlattr on 64-bit Nicolas Dichtel
2016-04-27  1:14   ` Balbir Singh
2016-04-27  1:14     ` Balbir Singh
2016-04-27  7:29     ` Nicolas Dichtel
2016-04-27  7:29       ` Nicolas Dichtel
2016-04-27 12:29       ` Balbir Singh
2016-04-27 12:29         ` Balbir Singh
2016-04-27 15:46         ` Nicolas Dichtel
2016-04-27 15:46           ` Nicolas Dichtel
2016-04-27 15:47           ` [PATCH net-next] taskstats: fix nl parsing in accounting/getdelays.c Nicolas Dichtel
2016-04-27 15:49             ` Nicolas Dichtel
2016-04-27 15:49               ` Nicolas Dichtel
2016-04-27 15:53               ` [PATCH net-next v2] " Nicolas Dichtel
2016-04-27 15:53                 ` Nicolas Dichtel
2016-04-27 16:56                 ` David Miller
2016-04-27 16:56                   ` David Miller
2016-04-27 16:41         ` [PATCH net-next 9/9] taskstats: use the libnl API to align nlattr on 64-bit David Miller
2016-04-24  0:13 ` [PATCH net-next 0/9] netlink: align attributes when needed (patchset #1) David Miller
2016-04-24  0:13   ` David Miller

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.