diff options
author | Davide Libenzi <davidel@xmailserver.org> | 2007-05-15 04:40:57 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-15 11:54:00 -0400 |
commit | f0ee9aabb0520adea5937855a9575c08a97b16e7 (patch) | |
tree | 9dd47c449b3de44302bc023f64d14c1fe18266b4 /fs | |
parent | 67647d0fb8bc03609d045a9cce85f7ef6d763036 (diff) |
epoll: move kfree inside ep_free
Move the kfree() call inside the ep_free() function.
Signed-off-by: Davide Libenzi <davidel@xmailserver.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/eventpoll.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/fs/eventpoll.c b/fs/eventpoll.c index d4255be29bc6..0b73cd45a06d 100644 --- a/fs/eventpoll.c +++ b/fs/eventpoll.c | |||
@@ -469,18 +469,16 @@ static void ep_free(struct eventpoll *ep) | |||
469 | } | 469 | } |
470 | 470 | ||
471 | mutex_unlock(&epmutex); | 471 | mutex_unlock(&epmutex); |
472 | |||
473 | mutex_destroy(&ep->mtx); | 472 | mutex_destroy(&ep->mtx); |
473 | kfree(ep); | ||
474 | } | 474 | } |
475 | 475 | ||
476 | static int ep_eventpoll_release(struct inode *inode, struct file *file) | 476 | static int ep_eventpoll_release(struct inode *inode, struct file *file) |
477 | { | 477 | { |
478 | struct eventpoll *ep = file->private_data; | 478 | struct eventpoll *ep = file->private_data; |
479 | 479 | ||
480 | if (ep) { | 480 | if (ep) |
481 | ep_free(ep); | 481 | ep_free(ep); |
482 | kfree(ep); | ||
483 | } | ||
484 | 482 | ||
485 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: close() ep=%p\n", current, ep)); | 483 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: close() ep=%p\n", current, ep)); |
486 | return 0; | 484 | return 0; |
@@ -1107,7 +1105,6 @@ asmlinkage long sys_epoll_create(int size) | |||
1107 | 1105 | ||
1108 | error_free: | 1106 | error_free: |
1109 | ep_free(ep); | 1107 | ep_free(ep); |
1110 | kfree(ep); | ||
1111 | error_return: | 1108 | error_return: |
1112 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_create(%d) = %d\n", | 1109 | DNPRINTK(3, (KERN_INFO "[%p] eventpoll: sys_epoll_create(%d) = %d\n", |
1113 | current, size, error)); | 1110 | current, size, error)); |