diff options
| author | Gustavo A. R. Silva <gustavo@embeddedor.com> | 2019-08-28 23:21:08 +0300 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2019-08-30 03:53:59 +0300 |
| commit | 3f1071ec39f79ad1e288d2f8e5cbe5697ced695b (patch) | |
| tree | a848d7b583dc8f3392d633534c35d4600c6e14e6 /tools/perf/scripts/python/sched-migration.py | |
| parent | b4e11253b1f3c1a27083f6a0d63ce69826c5d48d (diff) | |
| download | linux-3f1071ec39f79ad1e288d2f8e5cbe5697ced695b.tar.xz | |
net: spider_net: Use struct_size() helper
One of the more common cases of allocation size calculations is finding
the size of a structure that has a zero-sized array at the end, along
with memory for some number of elements for that array. For example:
struct spider_net_card {
...
struct spider_net_descr darray[0];
};
Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes.
So, replace the following form:
sizeof(struct spider_net_card) + (tx_descriptors + rx_descriptors) * sizeof(struct spider_net_descr)
with:
struct_size(card, darray, tx_descriptors + rx_descriptors)
Notice that, in this case, variable alloc_size is not necessary, hence it
is removed.
Building: allmodconfig powerpc.
This code was detected with the help of Coccinelle.
Signed-off-by: Gustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/perf/scripts/python/sched-migration.py')
0 files changed, 0 insertions, 0 deletions
