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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxxx>
---
 include/linux/kvm_host.h | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

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),		       \
-- 
2.39.0.246.g2a6d74b583-goog




[Index of Archives]     [KVM ARM]     [KVM ia64]     [KVM ppc]     [Virtualization Tools]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite Questions]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux