diff mbox

[v4,1/3] eventfd: export eventfd interfaces for module use

Message ID 20090526191528.20860.67700.stgit@dev.haskins.net (mailing list archive)
State New, archived
Headers show

Commit Message

Gregory Haskins May 26, 2009, 7:15 p.m. UTC
We want to use eventfd from KVM which can be compiled as a module, so
export the interfaces.

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

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


--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

Avi Kivity May 27, 2009, 8:57 a.m. UTC | #1
Gregory Haskins wrote:
> We want to use eventfd from KVM which can be compiled as a module, so
> export the interfaces.
>
> Signed-off-by: Gregory Haskins <ghaskins@novell.com

Since Davide has already acked this patch, please include this in the 
signoff section so we don't lose the paperwork.
Gregory Haskins May 27, 2009, 11:53 a.m. UTC | #2
[Fixing Davide's email address]

Avi Kivity wrote:
> Gregory Haskins wrote:
>> We want to use eventfd from KVM which can be compiled as a module, so
>> export the interfaces.
>>
>> Signed-off-by: Gregory Haskins <ghaskins@novell.com
>
> Since Davide has already acked this patch, please include this in the
> signoff section so we don't lose the paperwork.
>

Will do.

-Greg
diff mbox

Patch

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)
 {