X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=libkernelctl%2Flibkernelctl.c;h=e15dd8da624b9489adf256015950a4b66abeeb9d;hp=e99e777c3ab0b25221e421db9aaca96cc8508cbc;hb=d4a1283e471c152cedf6cb5ebcc74d509009145d;hpb=847177cda88eed885da0b5f0b66b03ffcd06c8f6 diff --git a/libkernelctl/libkernelctl.c b/libkernelctl/libkernelctl.c index e99e777c3..e15dd8da6 100644 --- a/libkernelctl/libkernelctl.c +++ b/libkernelctl/libkernelctl.c @@ -25,22 +25,22 @@ int kernctl_create_channel(int fd, struct lttng_channel *chops) { - return ioctl(fd, KERNEL_IO_CREATE_CHANNEL, chops); + return ioctl(fd, KERNEL_CREATE_CHANNEL, chops); } int kernctl_create_event(int fd, struct lttng_event *ev) { - return ioctl(fd, KERNEL_IO_CREATE_EVENT, ev); + return ioctl(fd, KERNEL_CREATE_EVENT, ev); } int kernctl_create_session(int fd) { - return ioctl(fd, KERNEL_IO_CREATE_SESSION); + return ioctl(fd, KERNEL_CREATE_SESSION); } int kernctl_create_stream(int fd) { - return ioctl(fd, KERNEL_IO_CREATE_STREAM); + return ioctl(fd, KERNEL_CREATE_STREAM); } /* returns the maximum size for sub-buffers. */ @@ -85,6 +85,12 @@ int kernctl_get_subbuf_size(int fd, unsigned long *len) return ioctl(fd, RING_BUFFER_GET_SUBBUF_SIZE, len); } +/* open the metadata global channel */ +int kernctl_open_metadata(int fd, struct lttng_channel *chops) +{ + return ioctl(fd, KERNEL_OPEN_METADATA, chops); +} + /* Release exclusive sub-buffer access, move consumer forward. */ int kernctl_put_next_subbuf(int fd) { @@ -117,11 +123,11 @@ int kernctl_snapshot_get_produced(int fd, unsigned long *pos) int kernctl_start_session(int fd) { - return ioctl(fd, KERNEL_IO_SESSION_START); + return ioctl(fd, KERNEL_SESSION_START); } int kernctl_stop_session(int fd) { - return ioctl(fd, KERNEL_IO_SESSION_STOP); + return ioctl(fd, KERNEL_SESSION_STOP); }