lkml.org 
[lkml]   [2009]   [Apr]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[KVM PATCH v3 1/2] eventfd: export fget and signal interfaces for module use
    Date
    We will use this later in the series

    Signed-off-by: Gregory Haskins <ghaskins@novell.com>
    ---

    fs/eventfd.c | 4 ++++
    1 files changed, 4 insertions(+), 0 deletions(-)

    diff --git a/fs/eventfd.c b/fs/eventfd.c
    index 2a701d5..faf9e60 100644
    --- a/fs/eventfd.c
    +++ b/fs/eventfd.c
    @@ -16,6 +16,7 @@
    #include <linux/anon_inodes.h>
    #include <linux/eventfd.h>
    #include <linux/syscalls.h>
    +#include <linux/module.h>

    struct eventfd_ctx {
    wait_queue_head_t wqh;
    @@ -56,6 +57,7 @@ int eventfd_signal(struct file *file, int n)

    return n;
    }
    +EXPORT_SYMBOL_GPL(eventfd_signal);

    static int eventfd_release(struct inode *inode, struct file *file)
    {
    @@ -197,6 +199,7 @@ struct file *eventfd_fget(int fd)

    return file;
    }
    +EXPORT_SYMBOL_GPL(eventfd_fget);

    SYSCALL_DEFINE2(eventfd2, unsigned int, count, int, flags)
    {
    @@ -228,6 +231,7 @@ SYSCALL_DEFINE2(eventfd2, unsigned int, count, int, flags)
    kfree(ctx);
    return fd;
    }
    +EXPORT_SYMBOL_GPL(sys_eventfd2);

    SYSCALL_DEFINE1(eventfd, unsigned int, count)
    {


    \
     
     \ /
      Last update: 2009-04-27 20:37    [W:3.550 / U:0.860 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site