Commit 405ecbf7 authored by Parav Pandit's avatar Parav Pandit Committed by Alex Williamson

vfio/mdev: Avoid inline get and put parent helpers

As section 15 of Documentation/process/coding-style.rst clearly
describes that compiler will be able to optimize code.

Hence drop inline for get and put helpers for parent.
Signed-off-by: default avatarParav Pandit <parav@mellanox.com>
Signed-off-by: default avatarAlex Williamson <alex.williamson@redhat.com>
parent 6093e348
...@@ -88,7 +88,7 @@ static void mdev_release_parent(struct kref *kref) ...@@ -88,7 +88,7 @@ static void mdev_release_parent(struct kref *kref)
put_device(dev); put_device(dev);
} }
static inline struct mdev_parent *mdev_get_parent(struct mdev_parent *parent) static struct mdev_parent *mdev_get_parent(struct mdev_parent *parent)
{ {
if (parent) if (parent)
kref_get(&parent->ref); kref_get(&parent->ref);
...@@ -96,7 +96,7 @@ static inline struct mdev_parent *mdev_get_parent(struct mdev_parent *parent) ...@@ -96,7 +96,7 @@ static inline struct mdev_parent *mdev_get_parent(struct mdev_parent *parent)
return parent; return parent;
} }
static inline void mdev_put_parent(struct mdev_parent *parent) static void mdev_put_parent(struct mdev_parent *parent)
{ {
if (parent) if (parent)
kref_put(&parent->ref, mdev_release_parent); kref_put(&parent->ref, mdev_release_parent);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment