X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=src%2Fcommon%2Fkernel-ctl%2Fkernel-ctl.cpp;h=76960307c80abe7924011c22f2f3a3ebccfc626d;hb=64803277bbdbe0a943360d918298a48157d9da55;hp=8a43239ef5f76037c9c9bfe4fd93b5ca8c95f8e2;hpb=21cf9b6b1843774306a76f4dccddddd706b64f79;p=lttng-tools.git diff --git a/src/common/kernel-ctl/kernel-ctl.cpp b/src/common/kernel-ctl/kernel-ctl.cpp index 8a43239ef..76960307c 100644 --- a/src/common/kernel-ctl/kernel-ctl.cpp +++ b/src/common/kernel-ctl/kernel-ctl.cpp @@ -12,14 +12,14 @@ #define __USE_LINUX_IOCTL_DEFS #include #include -#include -#include -#include +#include +#include +#include #include -#include +#include -#include "kernel-ctl.h" -#include "kernel-ioctl.h" +#include "kernel-ctl.hpp" +#include "kernel-ioctl.hpp" #define LTTNG_IOCTL_CHECK(fildes, request, ...) \ ({ \ @@ -181,7 +181,7 @@ int kernctl_syscall_mask(int fd, char **syscall_mask, uint32_t *nr_bits) array_alloc_len = lttng_align_ceil(kmask_len.len, 8) >> 3; - kmask = (lttng_kernel_abi_syscall_mask *) zmalloc(sizeof(*kmask) + array_alloc_len); + kmask = zmalloc(sizeof(*kmask) + array_alloc_len); if (!kmask) { ret = -1; goto end; @@ -519,7 +519,7 @@ int kernctl_capture(int fd, const struct lttng_bytecode *capture) struct lttng_kernel_abi_capture_bytecode *kb; /* Translate bytecode to kernel bytecode. */ - kb = (lttng_kernel_abi_capture_bytecode *) zmalloc(sizeof(*kb) + capture->len); + kb = zmalloc(sizeof(*kb) + capture->len); if (!kb) { ret = -ENOMEM; goto end; @@ -542,7 +542,7 @@ int kernctl_filter(int fd, const struct lttng_bytecode *filter) int ret; /* Translate bytecode to kernel bytecode */ - kb = (lttng_kernel_abi_filter_bytecode *) zmalloc(sizeof(*kb) + filter->len); + kb = zmalloc(sizeof(*kb) + filter->len); if (!kb) return -ENOMEM; kb->len = len = filter->len;