From owner-dev-commits-src-all@freebsd.org Sun Sep 19 22:26:20 2021 Return-Path: Delivered-To: dev-commits-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id E7C0D672A32; Sun, 19 Sep 2021 22:26:20 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HCMjS5zYbz4h45; Sun, 19 Sep 2021 22:26:20 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A967B25026; Sun, 19 Sep 2021 22:26:20 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 18JMQKXk061693; Sun, 19 Sep 2021 22:26:20 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 18JMQKbU061692; Sun, 19 Sep 2021 22:26:20 GMT (envelope-from git) Date: Sun, 19 Sep 2021 22:26:20 GMT Message-Id: <202109192226.18JMQKbU061692@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Colin Percival Subject: git: 5a01dea7e8c9 - main - style: Fix leading whitespace in bcache.c MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: cperciva X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 5a01dea7e8c9640605e5731a9fc7f600c07ace61 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Sep 2021 22:26:21 -0000 The branch main has been updated by cperciva: URL: https://cgit.FreeBSD.org/src/commit/?id=5a01dea7e8c9640605e5731a9fc7f600c07ace61 commit 5a01dea7e8c9640605e5731a9fc7f600c07ace61 Author: Colin Percival AuthorDate: 2021-09-19 22:24:00 +0000 Commit: Colin Percival CommitDate: 2021-09-19 22:24:00 +0000 style: Fix leading whitespace in bcache.c MFC after: 2 weeks X-MFC-with: Further bcache changes to come --- stand/common/bcache.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stand/common/bcache.c b/stand/common/bcache.c index 526f9fe3fa5c..0eeb7e74ee96 100644 --- a/stand/common/bcache.c +++ b/stand/common/bcache.c @@ -246,12 +246,12 @@ read_strategy(void *devdata, int rw, daddr_t blk, size_t size, } } - if (complete) { /* whole set was in cache, return it */ + if (complete) { /* whole set was in cache, return it */ if (bc->ra < BCACHE_READAHEAD) bc->ra <<= 1; /* increase read ahead */ bcopy(bc->bcache_data + (bcache_blksize * BHASH(bc, blk)), buf, size); goto done; - } + } /* * Fill in any misses. From check we have i pointing to first missing @@ -351,7 +351,7 @@ read_strategy(void *devdata, int rw, daddr_t blk, size_t size, result = 0; } - done: +done: if (result == 0) { if (rsize != NULL) *rsize = size;