aboutsummaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorJiri Pirko <[email protected]>2019-04-03 14:24:15 +0200
committerDavid S. Miller <[email protected]>2019-04-04 17:42:36 -0700
commit407dd706fb5245c138f3a972f8aaa1c8a09a574c (patch)
tree022729ea0fb05c616def8850e7b8e61a6c2e770c /include/net
parent8dc350202d32dbd9482b97dbf8ca22fbcb2a7918 (diff)
net: devlink: convert devlink_port_attrs bools to bits
In order to save space in the struct, convert bools to bits. Signed-off-by: Jiri Pirko <[email protected]> Reviewed-by: Florian Fainelli <[email protected]> Reviewed-by: Jakub Kicinski <[email protected]> Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/devlink.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/devlink.h b/include/net/devlink.h
index 31d5cec4d06b..4a1e3452a4ce 100644
--- a/include/net/devlink.h
+++ b/include/net/devlink.h
@@ -41,10 +41,10 @@ struct devlink {
};
struct devlink_port_attrs {
- bool set;
+ u8 set:1,
+ split:1;
enum devlink_port_flavour flavour;
u32 port_number; /* same value as "split group" */
- bool split;
u32 split_subport_number;
};