Remove now-obsolete comment.

Submitted by:	netchild
MFC after:	1 week
This commit is contained in:
John Baldwin 2011-03-10 19:50:12 +00:00
parent c90d5f1c37
commit c28a98e948
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=219460

View file

@ -400,7 +400,7 @@ futex_atomic_op(struct thread *td, int encoded_op, uint32_t *uaddr)
"cmparg = %x, uaddr = %p\n",
op, cmp, oparg, cmparg, uaddr);
#endif
/* XXX: linux verifies access here and returns EFAULT */
/* XXX: Linux verifies access here and returns EFAULT */
switch (op) {
case FUTEX_OP_SET:
@ -521,11 +521,6 @@ linux_sys_futex(struct thread *td, struct linux_sys_futex_args *args)
LINUX_CTR3(sys_futex, "WAKE uaddr %p val % d val3 %d",
args->uaddr, args->val, args->val3);
/*
* XXX: Linux is able to cope with different addresses
* corresponding to the same mapped memory in the sleeping
* and waker process(es).
*/
#ifdef DEBUG
if (ldebug(sys_futex))
printf(ARGS(sys_futex, "futex_wake uaddr %p val %d val3 %d"),