[PATCH 4/4] Fixed: virt: kvm: kvm_main_c: Resolved seven code indent errors

From: mohitpawar
Date: Sat Jul 13 2024 - 14:38:47 EST


From: Mohit0404 <mohitpawar@xxxxxxxxxxxx>

Fixed 7 Code Indent ERRORS-
virt/kvm/kvm_main.c:3347: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:3377: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:3432: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:3598: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:6006: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:6007: ERROR: code indent should use tabs where possible
virt/kvm/kvm_main.c:6337: ERROR: code indent should use tabs where possible
---
virt/kvm/kvm_main.c | 23 +++++++++++++----------
1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/virt/kvm/kvm_main.c b/virt/kvm/kvm_main.c
index 1192942aef91..4b9090693527 100644
--- a/virt/kvm/kvm_main.c
+++ b/virt/kvm/kvm_main.c
@@ -130,7 +130,10 @@ static long kvm_vcpu_compat_ioctl(struct file *file, unsigned int ioctl,
* passed to a compat task, let the ioctls fail.
*/
static long kvm_no_compat_ioctl(struct file *file, unsigned int ioctl,
- unsigned long arg) { return -EINVAL; }
+ unsigned long arg)
+{
+ return -EINVAL;
+}

static int kvm_no_compat_open(struct inode *inode, struct file *file)
{
@@ -3340,7 +3343,7 @@ int kvm_vcpu_read_guest(struct kvm_vcpu *vcpu, gpa_t gpa, void *data, unsigned l
EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest);

static int __kvm_read_guest_atomic(struct kvm_memory_slot *slot, gfn_t gfn,
- void *data, int offset, unsigned long len)
+ void *data, int offset, unsigned long len)
{
int r;
unsigned long addr;
@@ -3369,8 +3372,8 @@ EXPORT_SYMBOL_GPL(kvm_vcpu_read_guest_atomic);

/* Copy @len bytes from @data into guest memory at '(@gfn * PAGE_SIZE) + @offset' */
static int __kvm_write_guest_page(struct kvm *kvm,
- struct kvm_memory_slot *memslot, gfn_t gfn,
- const void *data, int offset, int len)
+ struct kvm_memory_slot *memslot, gfn_t gfn,
+ const void *data, int offset, int len)
{
int r;
unsigned long addr;
@@ -3425,7 +3428,7 @@ int kvm_write_guest(struct kvm *kvm, gpa_t gpa, const void *data,
EXPORT_SYMBOL_GPL(kvm_write_guest);

int kvm_vcpu_write_guest(struct kvm_vcpu *vcpu, gpa_t gpa, const void *data,
- unsigned long len)
+ unsigned long len)
{
gfn_t gfn = gpa >> PAGE_SHIFT;
int seg;
@@ -3590,8 +3593,8 @@ int kvm_clear_guest(struct kvm *kvm, gpa_t gpa, unsigned long len)
EXPORT_SYMBOL_GPL(kvm_clear_guest);

void mark_page_dirty_in_slot(struct kvm *kvm,
- const struct kvm_memory_slot *memslot,
- gfn_t gfn)
+ const struct kvm_memory_slot *memslot,
+ gfn_t gfn)
{
struct kvm_vcpu *vcpu = kvm_get_running_vcpu();

@@ -5999,8 +6002,8 @@ static int kvm_debugfs_open(struct inode *inode, struct file *file,

/*
* The debugfs files are a reference to the kvm struct which
- * is still valid when kvm_destroy_vm is called. kvm_get_kvm_safe
- * avoids the race between open and the removal of the debugfs directory.
+ * is still valid when kvm_destroy_vm is called. kvm_get_kvm_safe
+ * avoids the race between open and the removal of the debugfs directory.
*/
if (!kvm_get_kvm_safe(stat_data->kvm))
return -ENOENT;
@@ -6330,7 +6333,7 @@ EXPORT_SYMBOL_GPL(kvm_get_running_vcpu);
*/
struct kvm_vcpu * __percpu *kvm_get_running_vcpus(void)
{
- return &kvm_running_vcpu;
+ return &kvm_running_vcpu;
}

#ifdef CONFIG_GUEST_PERF_EVENTS
--
2.34.1