提交 8bdb4272 编写于 作者: J Jiri Pirko 提交者: David S. Miller

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: NJiri Pirko <jiri@mellanox.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 f8db8348
......@@ -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,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册