Browse Source

virtio: configuration change callback

Various drivers want to know when their configuration information
changes: the balloon driver is the immediate user, but the network
driver may one day have a "carrier" status as well.

This introduces that callback (lguest doesn't use it yet).

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Rusty Russell 17 years ago
parent
commit
f957d1f05a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      include/linux/virtio.h

+ 3 - 0
include/linux/virtio.h

@@ -98,12 +98,15 @@ void unregister_virtio_device(struct virtio_device *dev);
  * @probe: the function to call when a device is found.  Returns a token for
  * @probe: the function to call when a device is found.  Returns a token for
  *    remove, or PTR_ERR().
  *    remove, or PTR_ERR().
  * @remove: the function when a device is removed.
  * @remove: the function when a device is removed.
+ * @config_changed: optional function to call when the device configuration
+ *    changes; may be called in interrupt context.
  */
  */
 struct virtio_driver {
 struct virtio_driver {
 	struct device_driver driver;
 	struct device_driver driver;
 	const struct virtio_device_id *id_table;
 	const struct virtio_device_id *id_table;
 	int (*probe)(struct virtio_device *dev);
 	int (*probe)(struct virtio_device *dev);
 	void (*remove)(struct virtio_device *dev);
 	void (*remove)(struct virtio_device *dev);
+	void (*config_changed)(struct virtio_device *dev);
 };
 };
 
 
 int register_virtio_driver(struct virtio_driver *drv);
 int register_virtio_driver(struct virtio_driver *drv);