Skip to content

Commit 6b42f49

Browse files
jgunthorpezhiwang1
authored andcommitted
vfio/mdev: Remove mdev_parent_ops
The last useful member in this struct is the supported_type_groups, move it to the mdev_driver and delete mdev_parent_ops. Replace it with mdev_driver as an argument to mdev_register_device() Signed-off-by: Jason Gunthorpe <[email protected]> Signed-off-by: Christoph Hellwig <[email protected]> Signed-off-by: Zhi Wang <[email protected]> Link: http://patchwork.freedesktop.org/patch/msgid/[email protected] Reviewed-by: Kirti Wankhede <[email protected]> Reviewed-by: Zhi Wang <[email protected]>
1 parent e648693 commit 6b42f49

File tree

11 files changed

+28
-92
lines changed

11 files changed

+28
-92
lines changed

Documentation/driver-api/vfio-mediated-device.rst

+5-19
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ structure to represent a mediated device's driver::
105105
struct mdev_driver {
106106
int (*probe) (struct mdev_device *dev);
107107
void (*remove) (struct mdev_device *dev);
108+
struct attribute_group **supported_type_groups;
108109
struct device_driver driver;
109110
};
110111

@@ -119,30 +120,15 @@ to register and unregister itself with the core driver:
119120

120121
extern void mdev_unregister_driver(struct mdev_driver *drv);
121122

122-
The mediated bus driver is responsible for adding mediated devices to the VFIO
123-
group when devices are bound to the driver and removing mediated devices from
124-
the VFIO when devices are unbound from the driver.
125-
126-
127-
Physical Device Driver Interface
128-
--------------------------------
129-
130-
The physical device driver interface provides the mdev_parent_ops[3] structure
131-
to define the APIs to manage work in the mediated core driver that is related
132-
to the physical device.
133-
134-
The structures in the mdev_parent_ops structure are as follows:
135-
136-
* dev_attr_groups: attributes of the parent device
137-
* mdev_attr_groups: attributes of the mediated device
138-
* supported_config: attributes to define supported configurations
139-
* device_driver: device driver to bind for mediated device instances
123+
The mediated bus driver's probe function should create a vfio_device on top of
124+
the mdev_device and connect it to an appropriate implementation of
125+
vfio_device_ops.
140126

141127
When a driver wants to add the GUID creation sysfs to an existing device it has
142128
probe'd to then it should call::
143129

144130
extern int mdev_register_device(struct device *dev,
145-
const struct mdev_parent_ops *ops);
131+
struct mdev_driver *mdev_driver);
146132

147133
This will provide the 'mdev_supported_types/XX/create' files which can then be
148134
used to trigger the creation of a mdev_device. The created mdev_device will be

drivers/gpu/drm/i915/gvt/kvmgt.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -1723,12 +1723,7 @@ static struct mdev_driver intel_vgpu_mdev_driver = {
17231723
},
17241724
.probe = intel_vgpu_probe,
17251725
.remove = intel_vgpu_remove,
1726-
};
1727-
1728-
static const struct mdev_parent_ops intel_vgpu_mdev_ops = {
1729-
.owner = THIS_MODULE,
17301726
.supported_type_groups = gvt_vgpu_type_groups,
1731-
.device_driver = &intel_vgpu_mdev_driver,
17321727
};
17331728

17341729
int intel_gvt_page_track_add(struct intel_vgpu *info, u64 gfn)
@@ -2131,7 +2126,7 @@ static int intel_gvt_init_device(struct drm_i915_private *i915)
21312126
if (ret)
21322127
goto out_destroy_idle_vgpu;
21332128

2134-
ret = mdev_register_device(i915->drm.dev, &intel_vgpu_mdev_ops);
2129+
ret = mdev_register_device(i915->drm.dev, &intel_vgpu_mdev_driver);
21352130
if (ret)
21362131
goto out_cleanup_vgpu_type_groups;
21372132

drivers/s390/cio/vfio_ccw_ops.c

+1-6
Original file line numberDiff line numberDiff line change
@@ -656,17 +656,12 @@ struct mdev_driver vfio_ccw_mdev_driver = {
656656
},
657657
.probe = vfio_ccw_mdev_probe,
658658
.remove = vfio_ccw_mdev_remove,
659-
};
660-
661-
static const struct mdev_parent_ops vfio_ccw_mdev_ops = {
662-
.owner = THIS_MODULE,
663-
.device_driver = &vfio_ccw_mdev_driver,
664659
.supported_type_groups = mdev_type_groups,
665660
};
666661

667662
int vfio_ccw_mdev_reg(struct subchannel *sch)
668663
{
669-
return mdev_register_device(&sch->dev, &vfio_ccw_mdev_ops);
664+
return mdev_register_device(&sch->dev, &vfio_ccw_mdev_driver);
670665
}
671666

672667
void vfio_ccw_mdev_unreg(struct subchannel *sch)

drivers/s390/crypto/vfio_ap_ops.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -1496,12 +1496,7 @@ static struct mdev_driver vfio_ap_matrix_driver = {
14961496
},
14971497
.probe = vfio_ap_mdev_probe,
14981498
.remove = vfio_ap_mdev_remove,
1499-
};
1500-
1501-
static const struct mdev_parent_ops vfio_ap_matrix_ops = {
1502-
.owner = THIS_MODULE,
1503-
.device_driver = &vfio_ap_matrix_driver,
1504-
.supported_type_groups = vfio_ap_mdev_type_groups,
1499+
.supported_type_groups = vfio_ap_mdev_type_groups,
15051500
};
15061501

15071502
int vfio_ap_mdev_register(void)
@@ -1514,7 +1509,7 @@ int vfio_ap_mdev_register(void)
15141509
if (ret)
15151510
return ret;
15161511

1517-
ret = mdev_register_device(&matrix_dev->device, &vfio_ap_matrix_ops);
1512+
ret = mdev_register_device(&matrix_dev->device, &vfio_ap_matrix_driver);
15181513
if (ret)
15191514
goto err_driver;
15201515
return 0;

drivers/vfio/mdev/mdev_core.c

+5-8
Original file line numberDiff line numberDiff line change
@@ -109,22 +109,20 @@ static int mdev_device_remove_cb(struct device *dev, void *data)
109109
/*
110110
* mdev_register_device : Register a device
111111
* @dev: device structure representing parent device.
112-
* @ops: Parent device operation structure to be registered.
112+
* @mdev_driver: Device driver to bind to the newly created mdev
113113
*
114114
* Add device to list of registered parent devices.
115115
* Returns a negative value on error, otherwise 0.
116116
*/
117-
int mdev_register_device(struct device *dev, const struct mdev_parent_ops *ops)
117+
int mdev_register_device(struct device *dev, struct mdev_driver *mdev_driver)
118118
{
119119
int ret;
120120
struct mdev_parent *parent;
121121
char *env_string = "MDEV_STATE=registered";
122122
char *envp[] = { env_string, NULL };
123123

124124
/* check for mandatory ops */
125-
if (!ops || !ops->supported_type_groups)
126-
return -EINVAL;
127-
if (!ops->device_driver)
125+
if (!mdev_driver->supported_type_groups)
128126
return -EINVAL;
129127

130128
dev = get_device(dev);
@@ -151,7 +149,7 @@ int mdev_register_device(struct device *dev, const struct mdev_parent_ops *ops)
151149
init_rwsem(&parent->unreg_sem);
152150

153151
parent->dev = dev;
154-
parent->ops = ops;
152+
parent->mdev_driver = mdev_driver;
155153

156154
if (!mdev_bus_compat_class) {
157155
mdev_bus_compat_class = class_compat_register("mdev_bus");
@@ -249,7 +247,7 @@ int mdev_device_create(struct mdev_type *type, const guid_t *uuid)
249247
int ret;
250248
struct mdev_device *mdev, *tmp;
251249
struct mdev_parent *parent = type->parent;
252-
struct mdev_driver *drv = parent->ops->device_driver;
250+
struct mdev_driver *drv = parent->mdev_driver;
253251

254252
mutex_lock(&mdev_list_lock);
255253

@@ -271,7 +269,6 @@ int mdev_device_create(struct mdev_type *type, const guid_t *uuid)
271269
mdev->dev.parent = parent->dev;
272270
mdev->dev.bus = &mdev_bus_type;
273271
mdev->dev.release = mdev_device_release;
274-
mdev->dev.groups = parent->ops->mdev_attr_groups;
275272
mdev->type = type;
276273
/* Pairs with the put in mdev_device_release() */
277274
kobject_get(&type->kobj);

drivers/vfio/mdev/mdev_private.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ void mdev_bus_unregister(void);
1515

1616
struct mdev_parent {
1717
struct device *dev;
18-
const struct mdev_parent_ops *ops;
18+
struct mdev_driver *mdev_driver;
1919
struct kref ref;
2020
struct list_head next;
2121
struct kset *mdev_types_kset;

drivers/vfio/mdev/mdev_sysfs.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ static struct mdev_type *add_mdev_supported_type(struct mdev_parent *parent,
9797
{
9898
struct mdev_type *type;
9999
struct attribute_group *group =
100-
parent->ops->supported_type_groups[type_group_id];
100+
parent->mdev_driver->supported_type_groups[type_group_id];
101101
int ret;
102102

103103
if (!group->name) {
@@ -154,7 +154,7 @@ static struct mdev_type *add_mdev_supported_type(struct mdev_parent *parent,
154154
static void remove_mdev_supported_type(struct mdev_type *type)
155155
{
156156
struct attribute_group *group =
157-
type->parent->ops->supported_type_groups[type->type_group_id];
157+
type->parent->mdev_driver->supported_type_groups[type->type_group_id];
158158

159159
sysfs_remove_files(&type->kobj,
160160
(const struct attribute **)group->attrs);
@@ -168,7 +168,7 @@ static int add_mdev_supported_type_groups(struct mdev_parent *parent)
168168
{
169169
int i;
170170

171-
for (i = 0; parent->ops->supported_type_groups[i]; i++) {
171+
for (i = 0; parent->mdev_driver->supported_type_groups[i]; i++) {
172172
struct mdev_type *type;
173173

174174
type = add_mdev_supported_type(parent, i);

include/linux/mdev.h

+4-21
Original file line numberDiff line numberDiff line change
@@ -30,26 +30,6 @@ unsigned int mdev_get_type_group_id(struct mdev_device *mdev);
3030
unsigned int mtype_get_type_group_id(struct mdev_type *mtype);
3131
struct device *mtype_get_parent_dev(struct mdev_type *mtype);
3232

33-
/**
34-
* struct mdev_parent_ops - Structure to be registered for each parent device to
35-
* register the device to mdev module.
36-
*
37-
* @owner: The module owner.
38-
* @device_driver: Which device driver to probe() on newly created devices
39-
* @mdev_attr_groups: Attributes of the mediated device.
40-
* @supported_type_groups: Attributes to define supported types. It is mandatory
41-
* to provide supported types.
42-
*
43-
* Parent device that support mediated device should be registered with mdev
44-
* module with mdev_parent_ops structure.
45-
**/
46-
struct mdev_parent_ops {
47-
struct module *owner;
48-
struct mdev_driver *device_driver;
49-
const struct attribute_group **mdev_attr_groups;
50-
struct attribute_group **supported_type_groups;
51-
};
52-
5333
/* interface for exporting mdev supported type attributes */
5434
struct mdev_type_attribute {
5535
struct attribute attr;
@@ -74,12 +54,15 @@ struct mdev_type_attribute mdev_type_attr_##_name = \
7454
* struct mdev_driver - Mediated device driver
7555
* @probe: called when new device created
7656
* @remove: called when device removed
57+
* @supported_type_groups: Attributes to define supported types. It is mandatory
58+
* to provide supported types.
7759
* @driver: device driver structure
7860
*
7961
**/
8062
struct mdev_driver {
8163
int (*probe)(struct mdev_device *dev);
8264
void (*remove)(struct mdev_device *dev);
65+
struct attribute_group **supported_type_groups;
8366
struct device_driver driver;
8467
};
8568

@@ -98,7 +81,7 @@ static inline const guid_t *mdev_uuid(struct mdev_device *mdev)
9881

9982
extern struct bus_type mdev_bus_type;
10083

101-
int mdev_register_device(struct device *dev, const struct mdev_parent_ops *ops);
84+
int mdev_register_device(struct device *dev, struct mdev_driver *mdev_driver);
10285
void mdev_unregister_device(struct device *dev);
10386

10487
int mdev_register_driver(struct mdev_driver *drv);

samples/vfio-mdev/mbochs.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -1412,12 +1412,7 @@ static struct mdev_driver mbochs_driver = {
14121412
},
14131413
.probe = mbochs_probe,
14141414
.remove = mbochs_remove,
1415-
};
1416-
1417-
static const struct mdev_parent_ops mdev_fops = {
1418-
.owner = THIS_MODULE,
1419-
.device_driver = &mbochs_driver,
1420-
.supported_type_groups = mdev_type_groups,
1415+
.supported_type_groups = mdev_type_groups,
14211416
};
14221417

14231418
static const struct file_operations vd_fops = {
@@ -1462,7 +1457,7 @@ static int __init mbochs_dev_init(void)
14621457
if (ret)
14631458
goto err_class;
14641459

1465-
ret = mdev_register_device(&mbochs_dev, &mdev_fops);
1460+
ret = mdev_register_device(&mbochs_dev, &mbochs_driver);
14661461
if (ret)
14671462
goto err_device;
14681463

samples/vfio-mdev/mdpy.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -723,12 +723,7 @@ static struct mdev_driver mdpy_driver = {
723723
},
724724
.probe = mdpy_probe,
725725
.remove = mdpy_remove,
726-
};
727-
728-
static const struct mdev_parent_ops mdev_fops = {
729-
.owner = THIS_MODULE,
730-
.device_driver = &mdpy_driver,
731-
.supported_type_groups = mdev_type_groups,
726+
.supported_type_groups = mdev_type_groups,
732727
};
733728

734729
static const struct file_operations vd_fops = {
@@ -771,7 +766,7 @@ static int __init mdpy_dev_init(void)
771766
if (ret)
772767
goto err_class;
773768

774-
ret = mdev_register_device(&mdpy_dev, &mdev_fops);
769+
ret = mdev_register_device(&mdpy_dev, &mdpy_driver);
775770
if (ret)
776771
goto err_device;
777772

samples/vfio-mdev/mtty.c

+2-7
Original file line numberDiff line numberDiff line change
@@ -1301,12 +1301,7 @@ static struct mdev_driver mtty_driver = {
13011301
},
13021302
.probe = mtty_probe,
13031303
.remove = mtty_remove,
1304-
};
1305-
1306-
static const struct mdev_parent_ops mdev_fops = {
1307-
.owner = THIS_MODULE,
1308-
.device_driver = &mtty_driver,
1309-
.supported_type_groups = mdev_type_groups,
1304+
.supported_type_groups = mdev_type_groups,
13101305
};
13111306

13121307
static void mtty_device_release(struct device *dev)
@@ -1357,7 +1352,7 @@ static int __init mtty_dev_init(void)
13571352
if (ret)
13581353
goto err_class;
13591354

1360-
ret = mdev_register_device(&mtty_dev.dev, &mdev_fops);
1355+
ret = mdev_register_device(&mtty_dev.dev, &mtty_driver);
13611356
if (ret)
13621357
goto err_device;
13631358
return 0;

0 commit comments

Comments
 (0)