All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] convert tabs into spaces; preserving indentation
@ 2017-01-09 15:42 Eric DeVolder
  2017-01-09 16:37 ` Ian Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Eric DeVolder @ 2017-01-09 15:42 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] 3+ messages in thread

* Re: [PATCH] convert tabs into spaces; preserving indentation
  2017-01-09 15:42 [PATCH] convert tabs into spaces; preserving indentation Eric DeVolder
@ 2017-01-09 16:37 ` Ian Jackson
  2017-01-10 10:29   ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Ian Jackson @ 2017-01-09 16:37 UTC (permalink / raw)
  To: Eric DeVolder; +Cc: daniel.kiper, wei.liu2, xen-devel

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.

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] convert tabs into spaces; preserving indentation
  2017-01-09 16:37 ` Ian Jackson
@ 2017-01-10 10:29   ` Wei Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Wei Liu @ 2017-01-10 10:29 UTC (permalink / raw)
  To: Ian Jackson; +Cc: daniel.kiper, Eric DeVolder, wei.liu2, xen-devel

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.

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

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-01-10 10:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-09 15:42 [PATCH] convert tabs into spaces; preserving indentation Eric DeVolder
2017-01-09 16:37 ` Ian Jackson
2017-01-10 10:29   ` Wei Liu

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.