eventfd: export eventfd_signal and eventfd_fget for lguest

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Linux Kernel Mailing List
Date: Friday, June 12, 2009 - 11:01 am

Gitweb:     http://git.kernel.org/linus/5718607bb670c721f45f0dbb1cc7d6c64969aab1
Commit:     5718607bb670c721f45f0dbb1cc7d6c64969aab1
Parent:     9f155a9b3d5a5444bcc5e049ec2547bb5107150e
Author:     Rusty Russell <rusty@rustcorp.com.au>
AuthorDate: Fri Jun 12 22:27:09 2009 -0600
Committer:  Rusty Russell <rusty@rustcorp.com.au>
CommitDate: Fri Jun 12 22:27:09 2009 +0930

    eventfd: export eventfd_signal and eventfd_fget for lguest
    
    lguest wants to attach eventfds to guest notifications, and lguest is
    usually a module.
    
    Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
    To: Davide Libenzi <davidel@xmailserver.org>
---
 fs/eventfd.c |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/fs/eventfd.c b/fs/eventfd.c
index 2a701d5..3f0e197 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)
 {
--
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
eventfd: export eventfd_signal and eventfd_fget for lguest, Linux Kernel Mailing ..., (Fri Jun 12, 11:01 am)