All of lore.kernel.org
 help / color / mirror / Atom feed
* [replace tabs with spaces] convert tabs into spaces; preserving indentation
@ 2017-01-09 15:39 Eric DeVolder
  0 siblings, 0 replies; only message in thread
From: Eric DeVolder @ 2017-01-09 15:39 UTC (permalink / raw)
  To: xen-devel, ian.jackson, wei.liu2; +Cc: daniel.kiper

Convert tabs into spaces; preserving indentation

No functional changes

Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>

---
 tools/libxc/xc_kexec.c | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/tools/libxc/xc_kexec.c b/tools/libxc/xc_kexec.c
index 989e225192..59e2f076f4 100644
--- a/tools/libxc/xc_kexec.c
+++ b/tools/libxc/xc_kexec.c
@@ -27,8 +27,8 @@ int xc_kexec_exec(xc_interface *xch, int type)
     exec->type = type;
 
     ret = xencall2(xch->xcall, __HYPERVISOR_kexec_op,
-		   KEXEC_CMD_kexec,
-		   HYPERCALL_BUFFER_AS_ARG(exec));
+                   KEXEC_CMD_kexec,
+                   HYPERCALL_BUFFER_AS_ARG(exec));
 
 out:
     xc_hypercall_buffer_free(xch, exec);
@@ -53,8 +53,8 @@ int xc_kexec_get_range(xc_interface *xch, int range,  int nr,
     get_range->nr = nr;
 
     ret = xencall2(xch->xcall, __HYPERVISOR_kexec_op,
-		   KEXEC_CMD_kexec_get_range,
-		   HYPERCALL_BUFFER_AS_ARG(get_range));
+                   KEXEC_CMD_kexec_get_range,
+                   HYPERCALL_BUFFER_AS_ARG(get_range));
 
     *size = get_range->size;
     *start = get_range->start;
@@ -93,8 +93,8 @@ int xc_kexec_load(xc_interface *xch, uint8_t type, uint16_t arch,
     set_xen_guest_handle(load->segments.h, segments);
 
     ret = xencall2(xch->xcall, __HYPERVISOR_kexec_op,
-		   KEXEC_CMD_kexec_load,
-		   HYPERCALL_BUFFER_AS_ARG(load));
+                   KEXEC_CMD_kexec_load,
+                   HYPERCALL_BUFFER_AS_ARG(load));
 
 out:
     xc_hypercall_buffer_free(xch, load);
@@ -118,8 +118,8 @@ int xc_kexec_unload(xc_interface *xch, int type)
     unload->type = type;
 
     ret = xencall2(xch->xcall, __HYPERVISOR_kexec_op,
-		   KEXEC_CMD_kexec_unload,
-		   HYPERCALL_BUFFER_AS_ARG(unload));
+                   KEXEC_CMD_kexec_unload,
+                   HYPERCALL_BUFFER_AS_ARG(unload));
 
 out:
     xc_hypercall_buffer_free(xch, unload);
-- 
2.11.0


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2017-01-09 15:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-09 15:39 [replace tabs with spaces] convert tabs into spaces; preserving indentation Eric DeVolder

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.