X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=libringbuffer%2Fring_buffer_abi.c;h=0fe6b7e3f07ae10f22a716eb17d58a024d22afd7;hb=a5fd9b038fa5034ade759ca1338d2b93153ba217;hp=56423276ef9d3dd3f6552886a6aee115e7554899;hpb=a6352fd40a2090fd883a6c369144bf405c9e9ec4;p=ust.git diff --git a/libringbuffer/ring_buffer_abi.c b/libringbuffer/ring_buffer_abi.c index 5642327..0fe6b7e 100644 --- a/libringbuffer/ring_buffer_abi.c +++ b/libringbuffer/ring_buffer_abi.c @@ -1,16 +1,16 @@ /* - * ring_buffer_vfs.c + * ring_buffer_abi.c * * Copyright (C) 2009-2010 - Mathieu Desnoyers * - * Ring Buffer VFS file operations. + * Ring Buffer ABI operations. * * Dual LGPL v2.1/GPL v2 license. */ #include "backend.h" #include "frontend.h" -#include "vfs.h" +#include static int put_ulong(unsigned long val, unsigned long arg) { @@ -241,7 +241,7 @@ long lib_ring_buffer_ioctl(struct file *filp, unsigned int cmd, unsigned long ar arg); } case RING_BUFFER_FLUSH: - lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE); + lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE, handle); return 0; default: return -ENOIOCTLCMD; @@ -354,7 +354,7 @@ long lib_ring_buffer_compat_ioctl(struct file *filp, unsigned int cmd, return put_ulong(read_offset, arg); } case RING_BUFFER_FLUSH: - lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE); + lib_ring_buffer_switch_slow(buf, SWITCH_ACTIVE, handle); return 0; default: return -ENOIOCTLCMD;