diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2009-05-01 11:18:53 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2009-05-01 11:18:53 +0100 |
commit | 9222136ac9b2e404dba128b1ac74dacaa8bf1038 (patch) | |
tree | 84d74f0c966b925c3e22bf3322256df10455d94b /src/guestfs_protocol.c | |
parent | 2dc9e8a858b62830d15a8186fe575eb7903d2171 (diff) | |
download | libguestfs-9222136ac9b2e404dba128b1ac74dacaa8bf1038.tar.gz libguestfs-9222136ac9b2e404dba128b1ac74dacaa8bf1038.tar.xz libguestfs-9222136ac9b2e404dba128b1ac74dacaa8bf1038.zip |
Generated code for drop-caches command.
Diffstat (limited to 'src/guestfs_protocol.c')
-rw-r--r-- | src/guestfs_protocol.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/guestfs_protocol.c b/src/guestfs_protocol.c index 6c00afc3..395e710f 100644 --- a/src/guestfs_protocol.c +++ b/src/guestfs_protocol.c @@ -1508,6 +1508,16 @@ xdr_guestfs_mv_args (XDR *xdrs, guestfs_mv_args *objp) } bool_t +xdr_guestfs_drop_caches_args (XDR *xdrs, guestfs_drop_caches_args *objp) +{ + register int32_t *buf; + + if (!xdr_int (xdrs, &objp->whattodrop)) + return FALSE; + return TRUE; +} + +bool_t xdr_guestfs_procedure (XDR *xdrs, guestfs_procedure *objp) { register int32_t *buf; |