From owner-cvs-all@FreeBSD.ORG Thu May 25 14:26:11 2006 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C00D16A5C5; Thu, 25 May 2006 14:26:11 +0000 (UTC) (envelope-from ups@freebsd.org) Received: from speedfactory.net (mail6.speedfactory.net [66.23.216.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 950D143D46; Thu, 25 May 2006 14:26:10 +0000 (GMT) (envelope-from ups@freebsd.org) Received: from [192.168.5.101] (unverified [66.23.216.53]) by speedfactory.net (SurgeMail 3.5b3) with ESMTP id 45227296 for multiple; Thu, 25 May 2006 10:26:15 -0400 Message-ID: <4475BE7B.50106@freebsd.org> Date: Thu, 25 May 2006 10:26:03 -0400 From: Stephan Uphoff User-Agent: Thunderbird 1.5.0.2 (Macintosh/20060308) MIME-Version: 1.0 To: Gleb Smirnoff References: <200605250100.k4P10a3P002448@repoman.freebsd.org> <20060525111538.GK27819@FreeBSD.org> In-Reply-To: <20060525111538.GK27819@FreeBSD.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com r=1653887525 Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern vfs_subr.c src/sys/nfsclient nfs_bio.c src/sys/fs/smbfs smbfs_io.c src/sys/fs/nwfs nwfs_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 25 May 2006 14:26:14 -0000 Gleb Smirnoff wrote: > On Thu, May 25, 2006 at 01:00:36AM +0000, Stephan Uphoff wrote: > S> ups 2006-05-25 01:00:36 UTC > S> > S> FreeBSD src repository > S> > S> Modified files: > S> sys/kern vfs_subr.c > S> sys/nfsclient nfs_bio.c > S> sys/fs/smbfs smbfs_io.c > S> sys/fs/nwfs nwfs_io.c > S> Log: > S> Do not set B_NOCACHE on buffers when releasing them in flushbuflist(). > S> If B_NOCACHE is set the pages of vm backed buffers will be invalidated. > S> However clean buffers can be backed by dirty VM pages so invalidating them > S> can lead to data loss. > S> Add support for flush dirty page in the data invalidation function > S> of some network file systems. > S> > S> This fixes data losses during vnode recycling (and other code paths > S> using invalbuf(*,V_SAVE,*,*)) for data written using an mmaped file. > S> > S> Collaborative effort by: jhb@,mohans@,peter@,ps@,ups@ > S> Reviewed by: tegge@ > S> MFC after: 7 days > > Can this be related to reports like this: > > http://freebsd.rambler.ru/bsdmail/freebsd-current_curr/msg00282.html > > I believe that this is unrelated and that the sender of the message needs to re-install screen as suggested by http://freebsd.rambler.ru/bsdmail/freebsd-current_curr/msg00283.html If I recall correctly this is required due to changes in the pty code. Stephan