summary refs log tree commit diff stats
path: root/net/tap-linux.h
diff options
context:
space:
mode:
authorAhmed Abouzied <email@aabouzied.com>2021-06-14 20:38:49 +0200
committerThomas Huth <thuth@redhat.com>2022-11-11 09:39:03 +0100
commitf469150be8d49649fa624b04c04795303aa635b1 (patch)
tree686e4450e584b88d9b1388e023cf325fdd0385b8 /net/tap-linux.h
parente0091133e3367265c08345afe2950c0c22e93d12 (diff)
downloadfocaccia-qemu-f469150be8d49649fa624b04c04795303aa635b1.tar.gz
focaccia-qemu-f469150be8d49649fa624b04c04795303aa635b1.zip
net: Replace TAB indentations with spaces
Replaces TABs with spaces, making sure to have a consistent coding style
of 4 space indentations in the net subsystem.

Resolves: https://gitlab.com/qemu-project/qemu/-/issues/377
Signed-off-by: Ahmed Abouzied <email@aabouzied.com>
Message-Id: <20210614183849.20622-1-email@aabouzied.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
[thuth: Fixed mis-aligned indentation in some of the files]
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'net/tap-linux.h')
-rw-r--r--net/tap-linux.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/net/tap-linux.h b/net/tap-linux.h
index 1d06fe0de6..bbbb62c2a7 100644
--- a/net/tap-linux.h
+++ b/net/tap-linux.h
@@ -45,10 +45,10 @@
 #define IFF_DETACH_QUEUE 0x0400
 
 /* Features for GSO (TUNSETOFFLOAD). */
-#define TUN_F_CSUM	0x01	/* You can hand me unchecksummed packets. */
-#define TUN_F_TSO4	0x02	/* I can handle TSO for IPv4 packets */
-#define TUN_F_TSO6	0x04	/* I can handle TSO for IPv6 packets */
-#define TUN_F_TSO_ECN	0x08	/* I can handle TSO with ECN bits. */
-#define TUN_F_UFO	0x10	/* I can handle UFO packets */
+#define TUN_F_CSUM    0x01    /* You can hand me unchecksummed packets. */
+#define TUN_F_TSO4    0x02    /* I can handle TSO for IPv4 packets */
+#define TUN_F_TSO6    0x04    /* I can handle TSO for IPv6 packets */
+#define TUN_F_TSO_ECN 0x08    /* I can handle TSO with ECN bits. */
+#define TUN_F_UFO     0x10    /* I can handle UFO packets */
 
 #endif /* QEMU_TAP_LINUX_H */