From: Jiri Pirko Date: Thu, 24 Sep 2015 08:02:43 +0000 (+0200) Subject: switchdev: add switchdev_trans_ph_prepare/commit helpers X-Git-Tag: Ubuntu-5.13.0-19.19~16997^2~278^2~6 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=8bdb427206f077cdb567bf34da2e7212ecb2603c;p=mirror_ubuntu-jammy-kernel.git switchdev: add switchdev_trans_ph_prepare/commit helpers Add helpers which should be used int attr_set/obj_add switchdev ops to check the phase of transaction. Signed-off-by: Jiri Pirko Signed-off-by: David S. Miller --- diff --git a/include/net/switchdev.h b/include/net/switchdev.h index 368a6429198d..f84ecf4e5d77 100644 --- a/include/net/switchdev.h +++ b/include/net/switchdev.h @@ -35,6 +35,16 @@ struct switchdev_trans { enum switchdev_trans_ph ph; }; +static inline bool switchdev_trans_ph_prepare(struct switchdev_trans *trans) +{ + return trans && trans->ph == SWITCHDEV_TRANS_PREPARE; +} + +static inline bool switchdev_trans_ph_commit(struct switchdev_trans *trans) +{ + return trans && trans->ph == SWITCHDEV_TRANS_COMMIT; +} + enum switchdev_attr_id { SWITCHDEV_ATTR_UNDEFINED, SWITCHDEV_ATTR_PORT_PARENT_ID,