diff options
author | Paul Moore <paul.moore@hp.com> | 2006-09-25 18:53:37 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-09-25 18:53:37 -0400 |
commit | 22acb19a91d2b551ea37647747972e5286284b22 (patch) | |
tree | c37455de7df838e76b6f4279f084bce95c16e416 /include/net | |
parent | df2115c3134d0d1a18c1f37f5192394e7f64d1e0 (diff) |
[NETLINK]: add nla_for_each_nested() to the interface list
At the top of include/net/netlink.h is a list of Netlink interfaces, however,
the nla_for_each_nested() macro was not listed. This patch adds this interface
to the list at the top of the header file.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netlink.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/net/netlink.h b/include/net/netlink.h index 11dc2e7f679a..2897a73f81eb 100644 --- a/include/net/netlink.h +++ b/include/net/netlink.h | |||
@@ -151,6 +151,7 @@ | |||
151 | * nla_parse() parse and validate stream of attrs | 151 | * nla_parse() parse and validate stream of attrs |
152 | * nla_parse_nested() parse nested attribuets | 152 | * nla_parse_nested() parse nested attribuets |
153 | * nla_for_each_attr() loop over all attributes | 153 | * nla_for_each_attr() loop over all attributes |
154 | * nla_for_each_nested() loop over the nested attributes | ||
154 | *========================================================================= | 155 | *========================================================================= |
155 | */ | 156 | */ |
156 | 157 | ||