Skip to content
Commit 553d66cb authored by Gustavo A. R. Silva's avatar Gustavo A. R. Silva Committed by Joerg Roedel
Browse files

iommu/vt-d: Use struct_size() helper



Make use of the struct_size() helper instead of an open-coded version
in order to avoid any potential type mistakes, in particular in the
context in which this code is being used.

So, replace code of the following form:

size = sizeof(*info) + level * sizeof(info->path[0]);

with:

size = struct_size(info, path, level);

Signed-off-by: default avatarGustavo A. R. Silva <gustavo@embeddedor.com>
Signed-off-by: default avatarJoerg Roedel <jroedel@suse.de>
parent f7b0c4ce
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment