From patchwork Wed Oct 20 14:38:04 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Coly Li X-Patchwork-Id: 12572555 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C338DC433EF for ; Wed, 20 Oct 2021 14:38:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id A6E9961359 for ; Wed, 20 Oct 2021 14:38:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229691AbhJTOki (ORCPT ); Wed, 20 Oct 2021 10:40:38 -0400 Received: from smtp-out2.suse.de ([195.135.220.29]:54988 "EHLO smtp-out2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229570AbhJTOkg (ORCPT ); Wed, 20 Oct 2021 10:40:36 -0400 Received: from relay2.suse.de (relay2.suse.de [149.44.160.134]) by smtp-out2.suse.de (Postfix) with ESMTP id 1F8021F770; Wed, 20 Oct 2021 14:38:21 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1634740701; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=rhxVPNVrdj7DAABgqdH0vGZhcDeydZJ5yGLZ1FqxmPA=; b=nkNgSd5GPC40nG1NW96Sh5eoutVzI2Lq/I5H18ZSdDKSKLJZ60Xr2CVPupSRC0xj9sDXZo TQBWRlYvYBxBQI8sug1996PwYDMr3g1CeFtnTXAZZHPhKzrWvhlkXA6mAiMqszCMMmNNJI AAnbfqsGVKULMPw4LQ2zcLskq9T+Zk4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1634740701; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc:cc: mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=rhxVPNVrdj7DAABgqdH0vGZhcDeydZJ5yGLZ1FqxmPA=; b=tQUAgF1GolZ6b3yYazsg6yGlJ2zoSlv+3rzxw6BwzQ7C9BJgl46WzyfaNAMW7NvNyuo0dw wCM6Wk4FKLpKQQBA== Received: from localhost.localdomain (colyli.tcp.ovpn1.nue.suse.de [10.163.16.22]) by relay2.suse.de (Postfix) with ESMTP id 03871A3B8E; Wed, 20 Oct 2021 14:38:18 +0000 (UTC) From: Coly Li To: axboe@kernel.dk Cc: linux-bcache@vger.kernel.org, linux-block@vger.kernel.org, Coly Li Subject: [PATCH 0/8] bcache patches for Linux v5.16 (first wave) Date: Wed, 20 Oct 2021 22:38:04 +0800 Message-Id: <20211020143812.6403-1-colyli@suse.de> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org Hi Jens, This is the first wave bcache series for Linux v5.16. In this merge window, there is no large change set submitted, most of the patches are code clean up from Chao, Christoph and me. This time we have a new contributor Feng who provides a useful bug fix for dirty data size calculation during cache detaching. Please take them and thanks in advance. Coly Li --- Chao Yu (1): bcache: fix error info in register_bcache() Christoph Hellwig (4): bcache: remove the cache_dev_name field from struct cache bcache: remove the backing_dev_name field from struct cached_dev bcache: use bvec_kmap_local in bch_data_verify bcache: remove bch_crc64_update Coly Li (1): bcache: reserve never used bits from bkey.high Ding Senjie (1): md: bcache: Fix spelling of 'acquire' Lin Feng (1): bcache: move calc_cached_dev_sectors to proper place on backing device detach drivers/md/bcache/bcache.h | 4 --- drivers/md/bcache/btree.c | 2 +- drivers/md/bcache/debug.c | 15 ++++---- drivers/md/bcache/io.c | 16 ++++----- drivers/md/bcache/request.c | 6 ++-- drivers/md/bcache/super.c | 72 ++++++++++++++++++------------------- drivers/md/bcache/sysfs.c | 2 +- drivers/md/bcache/util.h | 8 ----- include/uapi/linux/bcache.h | 4 +-- 9 files changed, 57 insertions(+), 72 deletions(-)