vhost: fix poll coding style
authorMike Christie <michael.christie@oracle.com>
Tue, 25 May 2021 17:47:32 +0000 (12:47 -0500)
committerMichael S. Tsirkin <mst@redhat.com>
Sat, 3 Jul 2021 08:50:55 +0000 (04:50 -0400)
We use 3 coding styles in this struct. Switch to just tabs.

Signed-off-by: Mike Christie <michael.christie@oracle.com>
Reviewed-by: Chaitanya Kulkarni <chaitanya.kulkarni@wdc.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Jason Wang <jasowang@redhat.com>
Link: https://lore.kernel.org/r/20210525174733.6212-5-michael.christie@oracle.com
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/vhost/vhost.h

index 1e5295d..24ebb66 100644 (file)
@@ -28,12 +28,12 @@ struct vhost_work {
 /* Poll a file (eventfd or socket) */
 /* Note: there's nothing vhost specific about this structure. */
 struct vhost_poll {
-       poll_table                table;
-       wait_queue_head_t        *wqh;
-       wait_queue_entry_t              wait;
-       struct vhost_work         work;
-       __poll_t                  mask;
-       struct vhost_dev         *dev;
+       poll_table              table;
+       wait_queue_head_t       *wqh;
+       wait_queue_entry_t      wait;
+       struct vhost_work       work;
+       __poll_t                mask;
+       struct vhost_dev        *dev;
 };
 
 void vhost_work_init(struct vhost_work *work, vhost_work_fn_t fn);