* [PATCH] netlink: add minlen validation for the new signed types
@ 2012-08-26 8:47 Julian Anastasov
2012-08-30 17:12 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Julian Anastasov @ 2012-08-26 8:47 UTC (permalink / raw)
To: David Miller; +Cc: netdev
Signed-off-by: Julian Anastasov <ja@ssi.bg>
---
lib/nlattr.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/lib/nlattr.c b/lib/nlattr.c
index 4226dfe..18eca78 100644
--- a/lib/nlattr.c
+++ b/lib/nlattr.c
@@ -22,6 +22,10 @@ static const u16 nla_attr_minlen[NLA_TYPE_MAX+1] = {
[NLA_U64] = sizeof(u64),
[NLA_MSECS] = sizeof(u64),
[NLA_NESTED] = NLA_HDRLEN,
+ [NLA_S8] = sizeof(s8),
+ [NLA_S16] = sizeof(s16),
+ [NLA_S32] = sizeof(s32),
+ [NLA_S64] = sizeof(s64),
};
static int validate_nla(const struct nlattr *nla, int maxtype,
--
1.7.3.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-08-30 17:12 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-08-26 8:47 [PATCH] netlink: add minlen validation for the new signed types Julian Anastasov
2012-08-30 17:12 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).