From owner-cvs-src-old@FreeBSD.ORG Fri Dec 19 15:05:56 2008 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 037BD1065678 for ; Fri, 19 Dec 2008 15:05:56 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id E6D9C8FC12 for ; Fri, 19 Dec 2008 15:05:55 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id mBJF5tbU022564 for ; Fri, 19 Dec 2008 15:05:55 GMT (envelope-from kib@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mBJF5tYs022563 for cvs-src-old@freebsd.org; Fri, 19 Dec 2008 15:05:55 GMT (envelope-from kib@repoman.freebsd.org) Message-Id: <200812191505.mBJF5tYs022563@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kib@repoman.freebsd.org using -f From: Konstantin Belousov Date: Fri, 19 Dec 2008 15:04:26 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/compat/linprocfs linprocfs.c src/sys/fs/procfs procfs_map.c X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Dec 2008 15:05:56 -0000 kib 2008-12-19 15:04:26 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/compat/linprocfs linprocfs.c sys/fs/procfs procfs_map.c Log: SVN rev 186323 on 2008-12-19 15:04:26Z by kib MFC r185765, r185766: Make two style changes to create new commit and document proper commit message for r185765. Commit message for r185765 should be: In procfs map handler, and in linprocfs maps handler, do not call vn_fullpath() while having vm map locked. This is done in anticipation of the vop_vptocnp commit, that would make vn_fullpath sometime acquire vnode lock. Also, in linprocfs, maps handler already acquires vnode lock. MFC r185864: Relock user map earlier, to have the lock held when break leaves the loop earlier due to sbuf error. Approved by: re (kensmith) Revision Changes Path 1.115.2.4 +24 -9 src/sys/compat/linprocfs/linprocfs.c 1.40.2.2 +29 -11 src/sys/fs/procfs/procfs_map.c