mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-18 03:23:53 -04:00
vfio/mdev: Remove mdev_parent_ops dev_attr_groups
This is only used by one sample to print a fixed string that is pointless. In general, having a device driver attach sysfs attributes to the parent is horrific. This should never happen, and always leads to some kind of liftime bug as it become very difficult for the sysfs attribute to go back to any data owned by the device driver. Remove the general mechanism to create this abuse. Signed-off-by: Jason Gunthorpe <jgg@nvidia.com> Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Zhi Wang <zhi.a.wang@intel.com> Link: http://patchwork.freedesktop.org/patch/msgid/20220411141403.86980-32-hch@lst.de Reviewed-by: Kirti Wankhede <kwankhede@nvidia.com> Reviewed-by: Zhi Wang <zhi.a.wang@intel.com>
This commit is contained in:
committed by
Zhi Wang
parent
6c7f98b334
commit
e6486939d8
@@ -1207,38 +1207,11 @@ static long mtty_ioctl(struct vfio_device *vdev, unsigned int cmd,
|
||||
return -ENOTTY;
|
||||
}
|
||||
|
||||
static ssize_t
|
||||
sample_mtty_dev_show(struct device *dev, struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
return sprintf(buf, "This is phy device\n");
|
||||
}
|
||||
|
||||
static DEVICE_ATTR_RO(sample_mtty_dev);
|
||||
|
||||
static struct attribute *mtty_dev_attrs[] = {
|
||||
&dev_attr_sample_mtty_dev.attr,
|
||||
NULL,
|
||||
};
|
||||
|
||||
static const struct attribute_group mtty_dev_group = {
|
||||
.name = "mtty_dev",
|
||||
.attrs = mtty_dev_attrs,
|
||||
};
|
||||
|
||||
static const struct attribute_group *mtty_dev_groups[] = {
|
||||
&mtty_dev_group,
|
||||
NULL,
|
||||
};
|
||||
|
||||
static ssize_t
|
||||
sample_mdev_dev_show(struct device *dev, struct device_attribute *attr,
|
||||
char *buf)
|
||||
{
|
||||
if (mdev_from_dev(dev))
|
||||
return sprintf(buf, "This is MDEV %s\n", dev_name(dev));
|
||||
|
||||
return sprintf(buf, "\n");
|
||||
return sprintf(buf, "This is MDEV %s\n", dev_name(dev));
|
||||
}
|
||||
|
||||
static DEVICE_ATTR_RO(sample_mdev_dev);
|
||||
@@ -1333,7 +1306,6 @@ static struct mdev_driver mtty_driver = {
|
||||
static const struct mdev_parent_ops mdev_fops = {
|
||||
.owner = THIS_MODULE,
|
||||
.device_driver = &mtty_driver,
|
||||
.dev_attr_groups = mtty_dev_groups,
|
||||
.supported_type_groups = mdev_type_groups,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user