mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-07 04:09:21 +00:00
[PATCH] eventpoll.c compile fix
Fix two compile failures in eventpoll.c code which would happen if DEBUG_EPOLL is bigger than zero. Signed-off-by: Masoud Sharbiani <masouds@google.com> Cc: Davide Libenzi <davidel@xmailserver.org> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
e88d78f6ba
commit
45f17e0c2a
1 changed files with 2 additions and 2 deletions
|
@ -1168,7 +1168,7 @@ static int ep_unlink(struct eventpoll *ep, struct epitem *epi)
|
|||
eexit_1:
|
||||
|
||||
DNPRINTK(3, (KERN_INFO "[%p] eventpoll: ep_unlink(%p, %p) = %d\n",
|
||||
current, ep, epi->file, error));
|
||||
current, ep, epi->ffd.file, error));
|
||||
|
||||
return error;
|
||||
}
|
||||
|
@ -1236,7 +1236,7 @@ static int ep_poll_callback(wait_queue_t *wait, unsigned mode, int sync, void *k
|
|||
struct eventpoll *ep = epi->ep;
|
||||
|
||||
DNPRINTK(3, (KERN_INFO "[%p] eventpoll: poll_callback(%p) epi=%p ep=%p\n",
|
||||
current, epi->file, epi, ep));
|
||||
current, epi->ffd.file, epi, ep));
|
||||
|
||||
write_lock_irqsave(&ep->lock, flags);
|
||||
|
||||
|
|
Loading…
Reference in a new issue