| Date | Wed, 10 Feb 2021 20:00:28 -0400 | From | Jason Gunthorpe <> | Subject | Re: [PATCH v5 07/14] vfio/mdev: idxd: add 1dwq-v1 mdev type |
| |
On Fri, Feb 05, 2021 at 01:53:37PM -0700, Dave Jiang wrote:
> -static const struct mdev_parent_ops idxd_vdcm_ops = { > +static ssize_t name_show(struct kobject *kobj, struct device *dev, char *buf) > +{ > + struct vdcm_idxd_type *type; > + > + type = idxd_vdcm_find_vidxd_type(dev, kobject_name(kobj)); > + > + if (type) > + return sprintf(buf, "%s\n", type->name); > + > + return -EINVAL;
Success oriented flow
Jason
|