diff mbox series

[3/5] KVM: Fix indentation in stats macros

Message ID 20230118175300.790835-4-dmatlack@google.com (mailing list archive)
State New, archived
Headers show
Series KVM: Refactor KVM stats macros to allow custom names | expand

Commit Message

David Matlack Jan. 18, 2023, 5:52 p.m. UTC
Fix the indentation in the various stats macros so that parameter lists
that are split across lines are aligned with the open parenthesis on the
previous line.

No functional change intended.

Signed-off-by: David Matlack <dmatlack@google.com>
---
 include/linux/kvm_host.h | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)
diff mbox series

Patch

diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index 7ce196d69f64..cceb159727b5 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -1802,55 +1802,55 @@  struct _kvm_stats_desc {
 
 #define STATS_DESC_CUMULATIVE(SCOPE, _stat, _unit, _base, exponent)	       \
 	STATS_DESC(SCOPE, _stat, KVM_STATS_TYPE_CUMULATIVE,		       \
-		_unit, _base, exponent, 1, 0)
+		   _unit, _base, exponent, 1, 0)
 #define STATS_DESC_INSTANT(SCOPE, _stat, _unit, _base, exponent)	       \
 	STATS_DESC(SCOPE, _stat, KVM_STATS_TYPE_INSTANT,		       \
-		_unit, _base, exponent, 1, 0)
+		   _unit, _base, exponent, 1, 0)
 #define STATS_DESC_PEAK(SCOPE, _stat, _unit, _base, exponent)		       \
 	STATS_DESC(SCOPE, _stat, KVM_STATS_TYPE_PEAK,			       \
-		_unit, _base, exponent, 1, 0)
+		   _unit, _base, exponent, 1, 0)
 #define STATS_DESC_LINEAR_HIST(SCOPE, _stat, _unit, _base, exponent, _size,    \
 			       _bucket_size)				       \
 	STATS_DESC(SCOPE, _stat, KVM_STATS_TYPE_LINEAR_HIST,		       \
-		_unit, _base, exponent, _size, _bucket_size)
+		   _unit, _base, exponent, _size, _bucket_size)
 #define STATS_DESC_LOG_HIST(SCOPE, _stat, _unit, _base, exponent, _size)       \
 	STATS_DESC(SCOPE, _stat, KVM_STATS_TYPE_LOG_HIST,		       \
-		_unit, _base, exponent, _size, 0)
+		   _unit, _base, exponent, _size, 0)
 
 /* Cumulative counter, read/write */
 #define STATS_DESC_COUNTER(SCOPE, _stat)				       \
 	STATS_DESC_CUMULATIVE(SCOPE, _stat, KVM_STATS_UNIT_NONE,	       \
-		KVM_STATS_BASE_POW10, 0)
+			      KVM_STATS_BASE_POW10, 0)
 /* Instantaneous counter, read only */
 #define STATS_DESC_ICOUNTER(SCOPE, _stat)				       \
 	STATS_DESC_INSTANT(SCOPE, _stat, KVM_STATS_UNIT_NONE,		       \
-		KVM_STATS_BASE_POW10, 0)
+			   KVM_STATS_BASE_POW10, 0)
 /* Peak counter, read/write */
 #define STATS_DESC_PCOUNTER(SCOPE, _stat)				       \
 	STATS_DESC_PEAK(SCOPE, _stat, KVM_STATS_UNIT_NONE,		       \
-		KVM_STATS_BASE_POW10, 0)
+			KVM_STATS_BASE_POW10, 0)
 
 /* Instantaneous boolean value, read only */
 #define STATS_DESC_IBOOLEAN(SCOPE, _stat)				       \
 	STATS_DESC_INSTANT(SCOPE, _stat, KVM_STATS_UNIT_BOOLEAN,	       \
-		KVM_STATS_BASE_POW10, 0)
+			   KVM_STATS_BASE_POW10, 0)
 /* Peak (sticky) boolean value, read/write */
 #define STATS_DESC_PBOOLEAN(SCOPE, _stat)				       \
 	STATS_DESC_PEAK(SCOPE, _stat, KVM_STATS_UNIT_BOOLEAN,		       \
-		KVM_STATS_BASE_POW10, 0)
+			KVM_STATS_BASE_POW10, 0)
 
 /* Cumulative time in nanosecond */
 #define STATS_DESC_TIME_NSEC(SCOPE, _stat)				       \
 	STATS_DESC_CUMULATIVE(SCOPE, _stat, KVM_STATS_UNIT_SECONDS,	       \
-		KVM_STATS_BASE_POW10, -9)
+			      KVM_STATS_BASE_POW10, -9)
 /* Linear histogram for time in nanosecond */
 #define STATS_DESC_LINHIST_TIME_NSEC(SCOPE, _stat, _size, _bucket_size)	       \
 	STATS_DESC_LINEAR_HIST(SCOPE, _stat, KVM_STATS_UNIT_SECONDS,	       \
-		KVM_STATS_BASE_POW10, -9, _size, _bucket_size)
+			       KVM_STATS_BASE_POW10, -9, _size, _bucket_size)
 /* Logarithmic histogram for time in nanosecond */
 #define STATS_DESC_LOGHIST_TIME_NSEC(SCOPE, _stat, _size)		       \
 	STATS_DESC_LOG_HIST(SCOPE, _stat, KVM_STATS_UNIT_SECONDS,	       \
-		KVM_STATS_BASE_POW10, -9, _size)
+			    KVM_STATS_BASE_POW10, -9, _size)
 
 #define KVM_GENERIC_VM_STATS()						       \
 	STATS_DESC_COUNTER(VM_GENERIC, remote_tlb_flush),		       \