]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
memory: fix remote protocol compilation
authorEric Blake <eblake@redhat.com>
Wed, 13 Oct 2010 17:09:40 +0000 (11:09 -0600)
committerEric Blake <eblake@redhat.com>
Wed, 13 Oct 2010 17:09:40 +0000 (11:09 -0600)
'make -C src rpcgen' is supposed to be idempotent.  But commit
f928f43b7b mistakently manually edited a generated file rather
than fixing the upstream file.

* src/remote/remote_protocol.x (remote_memory_param_value): Use
correct spelling of enum values.
* src/remote/remote_protocol.c: Regenerate.

src/remote/remote_protocol.c
src/remote/remote_protocol.x

index 6a7457422b0c4c4c4b556bb97f16b0383448c574..5c557139c48550704d02c46bedcb19698b588dec 100644 (file)
@@ -308,38 +308,39 @@ xdr_remote_sched_param (XDR *xdrs, remote_sched_param *objp)
 }
 
 bool_t
-xdr_remote_memory_param_value(XDR * xdrs, remote_memory_param_value * objp)
+xdr_remote_memory_param_value (XDR *xdrs, remote_memory_param_value *objp)
 {
 
-    if (!xdr_int(xdrs, &objp->type))
-        return FALSE;
-    switch (objp->type) {
+         if (!xdr_int (xdrs, &objp->type))
+                 return FALSE;
+        switch (objp->type) {
         case VIR_DOMAIN_MEMORY_PARAM_INT:
-            return FALSE;
+                         return FALSE;
+                break;
         case VIR_DOMAIN_MEMORY_PARAM_UINT:
-            if (!xdr_u_int(xdrs, &objp->remote_memory_param_value_u.ui))
-                return FALSE;
-            break;
+                 if (!xdr_u_int (xdrs, &objp->remote_memory_param_value_u.ui))
+                         return FALSE;
+                break;
         case VIR_DOMAIN_MEMORY_PARAM_LLONG:
-            if (!xdr_int64_t(xdrs, &objp->remote_memory_param_value_u.l))
-                return FALSE;
-            break;
+                 if (!xdr_int64_t (xdrs, &objp->remote_memory_param_value_u.l))
+                         return FALSE;
+                break;
         case VIR_DOMAIN_MEMORY_PARAM_ULLONG:
-            if (!xdr_uint64_t(xdrs, &objp->remote_memory_param_value_u.ul))
-                return FALSE;
-            break;
+                 if (!xdr_uint64_t (xdrs, &objp->remote_memory_param_value_u.ul))
+                         return FALSE;
+                break;
         case VIR_DOMAIN_MEMORY_PARAM_DOUBLE:
-            if (!xdr_double(xdrs, &objp->remote_memory_param_value_u.d))
-                return FALSE;
-            break;
+                 if (!xdr_double (xdrs, &objp->remote_memory_param_value_u.d))
+                         return FALSE;
+                break;
         case VIR_DOMAIN_MEMORY_PARAM_BOOLEAN:
-            if (!xdr_int(xdrs, &objp->remote_memory_param_value_u.b))
-                return FALSE;
-            break;
+                 if (!xdr_int (xdrs, &objp->remote_memory_param_value_u.b))
+                         return FALSE;
+                break;
         default:
-            return FALSE;
-    }
-    return TRUE;
+                return FALSE;
+        }
+        return TRUE;
 }
 
 bool_t
index f5dcb5c0be651655583d510b2308bb17777ac534..e80fb5fd8fcabc4bfea57b9113808516002c237a 100644 (file)
@@ -317,17 +317,17 @@ struct remote_sched_param {
 };
 
 union remote_memory_param_value switch (int type) {
- case VIR_DOMAIN_MEMORY_FIELD_INT:
+ case VIR_DOMAIN_MEMORY_PARAM_INT:
      int i;
- case VIR_DOMAIN_MEMORY_FIELD_UINT:
+ case VIR_DOMAIN_MEMORY_PARAM_UINT:
      unsigned int ui;
- case VIR_DOMAIN_MEMORY_FIELD_LLONG:
+ case VIR_DOMAIN_MEMORY_PARAM_LLONG:
      hyper l;
- case VIR_DOMAIN_MEMORY_FIELD_ULLONG:
+ case VIR_DOMAIN_MEMORY_PARAM_ULLONG:
      unsigned hyper ul;
- case VIR_DOMAIN_MEMORY_FIELD_DOUBLE:
+ case VIR_DOMAIN_MEMORY_PARAM_DOUBLE:
      double d;
- case VIR_DOMAIN_MEMORY_FIELD_BOOLEAN:
+ case VIR_DOMAIN_MEMORY_PARAM_BOOLEAN:
      int b;
 };