Introduces a new AP device driver. This device driver...snip...
is built on the VFIO mediated device framework. The framework
provides sysfs interfaces that facilitate passthrough
access by guests to devices installed on the linux host.
+static int vfio_ap_queue_dev_probe(struct ap_device *apdev)
+{
+ return 0;...snip...
+}
+
+static void vfio_ap_matrix_dev_release(struct device *dev)
+{
+ struct ap_matrix *ap_matrix = dev_get_drvdata(dev);
+
+ kfree(ap_matrix);
+}