From owner-svn-src-head@FreeBSD.ORG Thu Mar 10 19:50:13 2011 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2C61E1065675; Thu, 10 Mar 2011 19:50:13 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 1C99F8FC17; Thu, 10 Mar 2011 19:50:13 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id p2AJoDKa054108; Thu, 10 Mar 2011 19:50:13 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id p2AJoDt5054106; Thu, 10 Mar 2011 19:50:13 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201103101950.p2AJoDt5054106@svn.freebsd.org> From: John Baldwin Date: Thu, 10 Mar 2011 19:50:12 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r219460 - head/sys/compat/linux X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 10 Mar 2011 19:50:13 -0000 Author: jhb Date: Thu Mar 10 19:50:12 2011 New Revision: 219460 URL: http://svn.freebsd.org/changeset/base/219460 Log: Remove now-obsolete comment. Submitted by: netchild MFC after: 1 week Modified: head/sys/compat/linux/linux_futex.c Modified: head/sys/compat/linux/linux_futex.c ============================================================================== --- head/sys/compat/linux/linux_futex.c Thu Mar 10 19:04:18 2011 (r219459) +++ head/sys/compat/linux/linux_futex.c Thu Mar 10 19:50:12 2011 (r219460) @@ -400,7 +400,7 @@ futex_atomic_op(struct thread *td, int e "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, struc 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"),