From patchwork Fri Oct 30 11:51:59 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Samuel Cabrero X-Patchwork-Id: 11869393 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, USER_AGENT_GIT autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id BF4C3C00A89 for ; Fri, 30 Oct 2020 11:52:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5BA9320723 for ; Fri, 30 Oct 2020 11:52:52 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725808AbgJ3Lwv (ORCPT ); Fri, 30 Oct 2020 07:52:51 -0400 Received: from mx2.suse.de ([195.135.220.15]:47062 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725993AbgJ3Lwv (ORCPT ); Fri, 30 Oct 2020 07:52:51 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id 9A4C8AC65 for ; Fri, 30 Oct 2020 11:52:22 +0000 (UTC) From: Samuel Cabrero To: linux-cifs@vger.kernel.org Subject: [PATCH v3 00/11] Witness protocol support for transparent failover Date: Fri, 30 Oct 2020 12:51:59 +0100 Message-Id: <20201030115210.8888-1-scabrero@suse.de> X-Mailer: git-send-email 2.29.0 Reply-To: scabrero@suse.de MIME-Version: 1.0 Precedence: bulk List-ID: X-Mailing-List: linux-cifs@vger.kernel.org Changes from v2: * Fix 'no previous prototype' kernel test robot warning in fs/cifs/netlink.c Changes from v1: * Update SPDX header in user space API files to LGPL-2.1+ with Linux-syscall-note [PATCH v3 01/11] cifs: Make extract_hostname function public [PATCH v3 02/11] cifs: Make extract_sharename function public [PATCH v3 03/11] cifs: Register generic netlink family [PATCH v3 04/11] cifs: add witness mount option and data structs [PATCH v3 05/11] cifs: Send witness register and unregister commands [PATCH v3 06/11] cifs: Set witness notification handler for messages [PATCH v3 07/11] cifs: Add witness information to debug data dump [PATCH v3 08/11] cifs: Send witness register messages to userspace [PATCH v3 09/11] cifs: Simplify reconnect code when dfs upcall is [PATCH v3 10/11] cifs: Handle witness client move notification [PATCH v3 11/11] cifs: Handle witness share moved notification fs/cifs/Kconfig | 11 + fs/cifs/Makefile | 2 + fs/cifs/cache.c | 24 - fs/cifs/cifs_debug.c | 13 + fs/cifs/cifs_swn.c | 723 ++++++++++++++++++++++++ fs/cifs/cifs_swn.h | 25 + fs/cifs/cifsfs.c | 22 +- fs/cifs/cifsglob.h | 8 + fs/cifs/cifsproto.h | 2 + fs/cifs/connect.c | 141 +++-- fs/cifs/fscache.c | 1 + fs/cifs/fscache.h | 1 - fs/cifs/misc.c | 56 ++ fs/cifs/netlink.c | 89 +++ fs/cifs/netlink.h | 16 + include/uapi/linux/cifs/cifs_netlink.h | 63 +++ 16 files changed, 1118 insertions(+), 79 deletions(-)