diff mbox

convert tabs into spaces; preserving indentation

Message ID 20170109154241.32304-1-eric.devolder@oracle.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eric DeVolder Jan. 9, 2017, 3:42 p.m. UTC
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(-)

Comments

Ian Jackson Jan. 9, 2017, 4:37 p.m. UTC | #1
Eric DeVolder writes ("[PATCH] convert tabs into spaces; preserving indentation"):
> Convert tabs into spaces; preserving indentation
> 
> No functional changes
> 
> Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>

Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

Although did you mean to send it twice ?

Thanks,
Ian.
Wei Liu Jan. 10, 2017, 10:29 a.m. UTC | #2
On Mon, Jan 09, 2017 at 04:37:53PM +0000, Ian Jackson wrote:
> Eric DeVolder writes ("[PATCH] convert tabs into spaces; preserving indentation"):
> > Convert tabs into spaces; preserving indentation
> > 
> > No functional changes
> > 
> > Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
> 
> Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>

Added libxc/xc_kexec.c prefix and applied.
diff mbox

Patch

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);