From owner-svn-src-head@freebsd.org Thu Jun 20 14:38:24 2019 Return-Path: Delivered-To: svn-src-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D3C2915BDB7F; Thu, 20 Jun 2019 14:38:24 +0000 (UTC) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: from gndrsh.dnsmgr.net (br1.CN84in.dnsmgr.net [69.59.192.140]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 45BBE8434F; Thu, 20 Jun 2019 14:38:24 +0000 (UTC) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: from gndrsh.dnsmgr.net (localhost [127.0.0.1]) by gndrsh.dnsmgr.net (8.13.3/8.13.3) with ESMTP id x5KEcMTx023503; Thu, 20 Jun 2019 07:38:22 -0700 (PDT) (envelope-from freebsd@gndrsh.dnsmgr.net) Received: (from freebsd@localhost) by gndrsh.dnsmgr.net (8.13.3/8.13.3/Submit) id x5KEcMsY023502; Thu, 20 Jun 2019 07:38:22 -0700 (PDT) (envelope-from freebsd) From: "Rodney W. Grimes" Message-Id: <201906201438.x5KEcMsY023502@gndrsh.dnsmgr.net> Subject: Re: svn commit: r349230 - in head: share/man/man9 sys/kern In-Reply-To: <201906201359.x5KDxkJ1000855@repo.freebsd.org> To: Alan Somers Date: Thu, 20 Jun 2019 07:38:22 -0700 (PDT) CC: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Reply-To: rgrimes@freebsd.org X-Mailer: ELM [version 2.4ME+ PL121h (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII X-Rspamd-Queue-Id: 45BBE8434F X-Spamd-Bar: ------ Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-6.96 / 15.00]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; REPLY(-4.00)[]; NEURAL_HAM_SHORT(-0.96)[-0.964,0] X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.29 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, 20 Jun 2019 14:38:25 -0000 > Author: asomers > Date: Thu Jun 20 13:59:46 2019 > New Revision: 349230 > URL: https://svnweb.freebsd.org/changeset/base/349230 > > Log: > Add a VOP_BMAP(9) man page > > Reviewed by: mckusick > MFC after: 2 weeks > Sponsored by: The FreeBSD Foundation > Differential Revision: https://reviews.freebsd.org/D20704 > > Added: > head/share/man/man9/VOP_BMAP.9 (contents, props changed) > Modified: > head/share/man/man9/Makefile > head/sys/kern/vfs_default.c > > Modified: head/share/man/man9/Makefile > ============================================================================== > --- head/share/man/man9/Makefile Thu Jun 20 13:24:58 2019 (r349229) > +++ head/share/man/man9/Makefile Thu Jun 20 13:59:46 2019 (r349230) > @@ -399,6 +399,7 @@ MAN= accept_filter.9 \ > VOP_ADVLOCK.9 \ > VOP_ALLOCATE.9 \ > VOP_ATTRIB.9 \ > + VOP_BMAP.9 \ > VOP_BWRITE.9 \ > VOP_CREATE.9 \ > VOP_FSYNC.9 \ > > Added: head/share/man/man9/VOP_BMAP.9 > ============================================================================== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/share/man/man9/VOP_BMAP.9 Thu Jun 20 13:59:46 2019 (r349230) > @@ -0,0 +1,86 @@ > +.\"- > +.\" SPDX-License-Identifier: BSD-2-Clause-FreeBSD > +.\" > +.\" Copyright (c) 2019 The FreeBSD Foundation > +.\" > +.\" This software was developed by BFF Storage Systems, LLC under sponsorship > +.\" from the FreeBSD Foundation. > +.\" > +.\" Redistribution and use in source and binary forms, with or without > +.\" modification, are permitted provided that the following conditions > +.\" are met: > +.\" 1. Redistributions of source code must retain the above copyright > +.\" notice, this list of conditions and the following disclaimer. > +.\".\"2. Redistributions in binary form must reproduce the above copyright Looks like a line join happened here. > +.\" notice, this list of conditions and the following disclaimer in the > +.\" documentation and/or other materials provided with the distribution. > +.\" ... -- Rod Grimes rgrimes@freebsd.org