debugobjects: add timer specific object debugging code
Add calls to the generic object debugging infrastructure and provide fixup functions which allow to keep the system alive when recoverable problems have been detected by the object debugging core code. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Acked-by: Ingo Molnar <mingo@elte.hu> Cc: Greg KH <greg@kroah.com> Cc: Randy Dunlap <randy.dunlap@oracle.com> Cc: Kay Sievers <kay.sievers@vrfy.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
691cc54c7d
commit
c6f3a97f86
5
fs/aio.c
5
fs/aio.c
@@ -1078,9 +1078,7 @@ static void timeout_func(unsigned long data)
|
||||
|
||||
static inline void init_timeout(struct aio_timeout *to)
|
||||
{
|
||||
init_timer(&to->timer);
|
||||
to->timer.data = (unsigned long)to;
|
||||
to->timer.function = timeout_func;
|
||||
setup_timer_on_stack(&to->timer, timeout_func, (unsigned long) to);
|
||||
to->timed_out = 0;
|
||||
to->p = current;
|
||||
}
|
||||
@@ -1213,6 +1211,7 @@ retry:
|
||||
if (timeout)
|
||||
clear_timeout(&to);
|
||||
out:
|
||||
destroy_timer_on_stack(&to.timer);
|
||||
return i ? i : ret;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user