mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
taskstats: fix nl parsing in accounting/getdelays.c
The type TASKSTATS_TYPE_NULL should always be ignored. When jumping to the next attribute, only the length of the current attribute should be added, not the length of all nested attributes. This last bug was not visible before commit80df554275
, because the kernel didn't put more than two nested attributes. Fixes:a3baf649ca
("[PATCH] per-task-delay-accounting: documentation") Fixes:80df554275
("taskstats: use the libnl API to align nlattr on 64-bit") Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
0e7dd0c9c3
commit
570d8e9398
@ -505,6 +505,8 @@ int main(int argc, char *argv[])
|
||||
if (!loop)
|
||||
goto done;
|
||||
break;
|
||||
case TASKSTATS_TYPE_NULL:
|
||||
break;
|
||||
default:
|
||||
fprintf(stderr, "Unknown nested"
|
||||
" nla_type %d\n",
|
||||
@ -512,7 +514,8 @@ int main(int argc, char *argv[])
|
||||
break;
|
||||
}
|
||||
len2 += NLA_ALIGN(na->nla_len);
|
||||
na = (struct nlattr *) ((char *) na + len2);
|
||||
na = (struct nlattr *)((char *)na +
|
||||
NLA_ALIGN(na->nla_len));
|
||||
}
|
||||
break;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user