From patchwork Tue Aug 27 09:37:46 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johannes Thumshirn X-Patchwork-Id: 11116485 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 5116F13B1 for ; Tue, 27 Aug 2019 09:37:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 391082173E for ; Tue, 27 Aug 2019 09:37:57 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729717AbfH0Jhx (ORCPT ); Tue, 27 Aug 2019 05:37:53 -0400 Received: from mx2.suse.de ([195.135.220.15]:34014 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1727910AbfH0Jhx (ORCPT ); Tue, 27 Aug 2019 05:37:53 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 866C2AD20 for ; Tue, 27 Aug 2019 09:37:52 +0000 (UTC) From: Johannes Thumshirn To: David Sterba Cc: Linux BTRFS Mailinglist , Johannes Thumshirn Subject: [PATCH v4 0/4] btrfs: support xxhash64 checksums Date: Tue, 27 Aug 2019 11:37:46 +0200 Message-Id: <20190827093750.15310-1-jthumshirn@suse.de> X-Mailer: git-send-email 2.16.4 Sender: linux-btrfs-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-btrfs@vger.kernel.org Now that Nikolay's XXHASH64 support for the Crypto API has landed and BTRFS is prepared for an easy addition of new checksums, this patchset implements XXHASH64 as a second, fast but not cryptographically secure checksum hash. For changelogs, please see the individual patches. David Sterba (1): btrfs: sysfs: export supported checksums Johannes Thumshirn (3): btrfs: turn checksum type define into a enum btrfs: create structure to encode checksum type and length btrfs: add xxhash64 to checksumming algorithms fs/btrfs/Kconfig | 1 + fs/btrfs/ctree.h | 14 +++++++++----- fs/btrfs/disk-io.c | 1 + fs/btrfs/super.c | 1 + fs/btrfs/sysfs.c | 29 +++++++++++++++++++++++++++++ include/uapi/linux/btrfs_tree.h | 5 ++++- 6 files changed, 45 insertions(+), 6 deletions(-)