Date: Mon, 11 Mar 2019 23:17:37 -0600 From: Warner Losh <imp@bsdimp.com> To: Warner Losh <imp@freebsd.org> Cc: src-committers <src-committers@freebsd.org>, svn-src-all <svn-src-all@freebsd.org>, svn-src-head <svn-src-head@freebsd.org> Subject: Re: svn commit: r345052 - head/sys/kern Message-ID: <CANCZdfqv4zy469ZiwDNQq77qNsHYuxPiymYVUdgPnf_%2BfYXGYA@mail.gmail.com> In-Reply-To: <201903120510.x2C5Afs9081736@repo.freebsd.org> References: <201903120510.x2C5Afs9081736@repo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, Mar 11, 2019 at 11:10 PM Warner Losh <imp@freebsd.org> wrote: > Author: imp > Date: Tue Mar 12 05:10:41 2019 > New Revision: 345052 > URL: https://svnweb.freebsd.org/changeset/base/345052 > > Log: > Fix botched merge with 355066 > It was actually 335066. And since this was before the 12 branch, it should be MFC'd in a week or so. Warner > When merging from Netflix's tree, resetting the carsize was dropped > accidentally. This fix fixes that revision by properly resetting how > many are in the car. > > Noticed by: mav@ > > Modified: > head/sys/kern/subr_disk.c > > Modified: head/sys/kern/subr_disk.c > > ============================================================================== > --- head/sys/kern/subr_disk.c Tue Mar 12 04:57:05 2019 (r345051) > +++ head/sys/kern/subr_disk.c Tue Mar 12 05:10:41 2019 (r345052) > @@ -201,6 +201,7 @@ bioq_insert_tail(struct bio_queue_head *head, struct b > > TAILQ_INSERT_TAIL(&head->queue, bp, bio_queue); > head->total++; > + head->batched = 0; > head->insert_point = bp; > head->last_offset = bp->bio_offset; > } > >
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CANCZdfqv4zy469ZiwDNQq77qNsHYuxPiymYVUdgPnf_%2BfYXGYA>