From owner-svn-src-all@freebsd.org Fri Feb 9 20:05:41 2018 Return-Path: Delivered-To: svn-src-all@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 0A9B9F20229; Fri, 9 Feb 2018 20:05:41 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: from mail-it0-f43.google.com (mail-it0-f43.google.com [209.85.214.43]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 969E8767BA; Fri, 9 Feb 2018 20:05:40 +0000 (UTC) (envelope-from cse.cem@gmail.com) Received: by mail-it0-f43.google.com with SMTP id b66so12390780itd.5; Fri, 09 Feb 2018 12:05:40 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:reply-to:in-reply-to:references :from:date:message-id:subject:to:cc; bh=UFEKVGasYZPxwbSElxH44Xqo9Q8Il+ub180Q2NTcDCk=; b=LAz8cbA8RwKRQ5rKmxAc7nZqqHTHobwonVAiwAfVPA5TWcsl9ge14NzCSwmL+CIrcq BUqCIjWHn8cFQZZc2WgxNKNY6c+FAEt8Y9ooV5cAHPKQDu+JXUGfVhGDTlQ79DWJNQQ3 VJe/OxgUBbrbik7dhZrSlpIutX/OkB9xTrDyVMQKWRic/4vyKUX0/u/ZMV13Ukcmo3e1 NcRPiqAmgJAKEvlC5yaGcZL/m1NPC1u3FVcBy0PSXY4vbUKyI/zja0MSrjGWVe6Axvyj 9OKu+9Xwgt3sSSTAwV7XjecpXcwtwr5nUuJVlim5kzT/VZ/D7OS5Vg186uyEflYAHdLl xFXg== X-Gm-Message-State: APf1xPB9A8txxzKD0WvrmVRzBcMHicuTnb8waGO0ibdUN3svljp+Yv1l Z9qVoq4fauGB8aAnn9j05csAjeCE X-Google-Smtp-Source: AH8x227rf7mSm/G2XbY/6Ajk62LU8JiOVMg2FaGiVe8VlTImVV/YUMdbWXPVAFnbijvLbI6dUHsjWw== X-Received: by 10.36.57.74 with SMTP id l71mr5386878ita.40.1518206733977; Fri, 09 Feb 2018 12:05:33 -0800 (PST) Received: from mail-io0-f179.google.com (mail-io0-f179.google.com. [209.85.223.179]) by smtp.gmail.com with ESMTPSA id p2sm3848353ite.1.2018.02.09.12.05.33 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Feb 2018 12:05:33 -0800 (PST) Received: by mail-io0-f179.google.com with SMTP id d13so10931997iog.5; Fri, 09 Feb 2018 12:05:33 -0800 (PST) X-Received: by 10.107.131.210 with SMTP id n79mr4347091ioi.215.1518206733569; Fri, 09 Feb 2018 12:05:33 -0800 (PST) MIME-Version: 1.0 Reply-To: cem@freebsd.org Received: by 10.2.152.123 with HTTP; Fri, 9 Feb 2018 12:05:33 -0800 (PST) In-Reply-To: <201802091950.w19Joljx041243@repo.freebsd.org> References: <201802091950.w19Joljx041243@repo.freebsd.org> From: Conrad Meyer Date: Fri, 9 Feb 2018 12:05:33 -0800 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: svn commit: r329078 - in head/sys: kern sys To: Kirk McKusick Cc: src-committers , svn-src-all@freebsd.org, svn-src-head@freebsd.org Content-Type: text/plain; charset="UTF-8" X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Feb 2018 20:05:41 -0000 On Fri, Feb 9, 2018 at 11:50 AM, Kirk McKusick wrote: > Author: mckusick > Date: Fri Feb 9 19:50:47 2018 > New Revision: 329078 > URL: https://svnweb.freebsd.org/changeset/base/329078 > > Log: > Merge biodone_finish() back into biodone(). The primary purpose is > to make the order of operations clearer to avoid the race condition > that was fixed in r328914. In particular, this commit corrects a > similar race that existed in the soft updates callback. Thanks!