From 51e37c7f37e8dbe0fcd3c4180191b1f8a23a67a8 Mon Sep 17 00:00:00 2001 From: Doug Ambrisko Date: Fri, 2 Jun 2006 17:45:48 +0000 Subject: [PATCH] Make lio ident more consistant with aio ident. --- sys/kern/vfs_aio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_aio.c b/sys/kern/vfs_aio.c index b2326c7ac742..8dfbf96be112 100644 --- a/sys/kern/vfs_aio.c +++ b/sys/kern/vfs_aio.c @@ -2033,7 +2033,7 @@ do_lio_listio(struct thread *td, struct lio_listio_args *uap, int oldsigev) kq = (struct kqueue *)kq_fp->f_data; kev.filter = EVFILT_LIO; kev.flags = EV_ADD | EV_ENABLE | EV_FLAG1; - kev.ident = (uintptr_t)lj; /* something unique */ + kev.ident = (uintptr_t)uap->acb_list; /* something unique */ kev.data = (intptr_t)lj; /* pass user defined sigval data */ kev.udata = lj->lioj_signal.sigev_value.sival_ptr;