[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH RFC 21/23] gdbsx: remove cast from ioctl
The ulong type is not defined on FreeBSD, and the cast seems pointless, so just remove it. Signed-off-by: Roger Pau Monnà <roger.pau@xxxxxxxxxx> Cc: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> Cc: Ian Campbell <ian.campbell@xxxxxxxxxx> --- tools/debugger/gdbsx/xg/xg_main.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/debugger/gdbsx/xg/xg_main.c b/tools/debugger/gdbsx/xg/xg_main.c index 0fc3f82..c95e4ed 100644 --- a/tools/debugger/gdbsx/xg/xg_main.c +++ b/tools/debugger/gdbsx/xg/xg_main.c @@ -180,7 +180,7 @@ _domctl_hcall(uint32_t cmd, /* which domctl hypercall */ hypercall.op = __HYPERVISOR_domctl; hypercall.arg[0] = (unsigned long)&domctl; - rc = ioctl(_dom0_fd, IOCTL_PRIVCMD_HYPERCALL, (ulong)&hypercall); + rc = ioctl(_dom0_fd, IOCTL_PRIVCMD_HYPERCALL, &hypercall); if (domctlarg && sz) munlock(domctlarg, sz); return rc; @@ -220,7 +220,7 @@ _check_hyp(int guest_bitness) hypercall.arg[0] = (unsigned long)XENVER_capabilities; hypercall.arg[1] = (unsigned long)&xen_caps; - rc = ioctl(_dom0_fd, IOCTL_PRIVCMD_HYPERCALL, (ulong)&hypercall); + rc = ioctl(_dom0_fd, IOCTL_PRIVCMD_HYPERCALL, &hypercall); munlock(&xen_caps, sizeof(xen_caps)); XGTRC("XENCAPS:%s\n", xen_caps); -- 1.7.7.5 (Apple Git-26) _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |