From 98b616a10c9707a9b56274a2f330dbb6911e335d Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 12 Jun 2009 22:27:09 -0600 Subject: [PATCH] --- yaml --- r: 147996 b: refs/heads/master c: 5718607bb670c721f45f0dbb1cc7d6c64969aab1 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/eventfd.c | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 59c38269dc82..ccec36c645cc 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 9f155a9b3d5a5444bcc5e049ec2547bb5107150e +refs/heads/master: 5718607bb670c721f45f0dbb1cc7d6c64969aab1 diff --git a/trunk/fs/eventfd.c b/trunk/fs/eventfd.c index 2a701d593d35..3f0e1974abdc 100644 --- a/trunk/fs/eventfd.c +++ b/trunk/fs/eventfd.c @@ -16,6 +16,7 @@ #include #include #include +#include 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) {