All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxl: correct function name
@ 2015-01-28 13:26 Wei Liu
  2015-01-28 14:21 ` Ian Campbell
  0 siblings, 1 reply; 2+ messages in thread
From: Wei Liu @ 2015-01-28 13:26 UTC (permalink / raw)
  To: xen-devel; +Cc: Ian Jackson, Wei Liu, Ian Campbell

spaw_ -> spawn_

Signed-off-by: Wei Liu <wei.liu2@citrix.com>
Cc: Ian Campbell <ian.campbell@citrix.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>
---
 tools/libxl/libxl_dm.c | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c
index c2b0487..ab65a72 100644
--- a/tools/libxl/libxl_dm.c
+++ b/tools/libxl/libxl_dm.c
@@ -972,9 +972,9 @@ static void stubdom_pvqemu_cb(libxl__egc *egc,
                               libxl__multidev *aodevs,
                               int rc);
 
-static void spaw_stubdom_pvqemu_destroy_cb(libxl__egc *egc,
-                                           libxl__destroy_domid_state *dis,
-                                           int rc);
+static void spawn_stubdom_pvqemu_destroy_cb(libxl__egc *egc,
+                                            libxl__destroy_domid_state *dis,
+                                            int rc);
 
 char *libxl__stub_dm_name(libxl__gc *gc, const char *guest_name)
 {
@@ -1269,7 +1269,7 @@ static void stubdom_pvqemu_cb(libxl__egc *egc,
         if (dm_domid) {
             sdss->dis.ao = ao;
             sdss->dis.domid = dm_domid;
-            sdss->dis.callback = spaw_stubdom_pvqemu_destroy_cb;
+            sdss->dis.callback = spawn_stubdom_pvqemu_destroy_cb;
             libxl__destroy_domid(egc, &sdss->dis);
             return;
         }
@@ -1277,9 +1277,9 @@ static void stubdom_pvqemu_cb(libxl__egc *egc,
     sdss->callback(egc, &sdss->dm, rc);
 }
 
-static void spaw_stubdom_pvqemu_destroy_cb(libxl__egc *egc,
-                                           libxl__destroy_domid_state *dis,
-                                           int rc)
+static void spawn_stubdom_pvqemu_destroy_cb(libxl__egc *egc,
+                                            libxl__destroy_domid_state *dis,
+                                            int rc)
 {
     libxl__stub_dm_spawn_state *sdss = CONTAINER_OF(dis, *sdss, dis);
     STATE_AO_GC(sdss->dis.ao);
-- 
1.9.1

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

end of thread, other threads:[~2015-01-28 14:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-01-28 13:26 [PATCH] libxl: correct function name Wei Liu
2015-01-28 14:21 ` Ian Campbell

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.