From mboxrd@z Thu Jan 1 00:00:00 1970 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=-7.1 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 1BBD9C433E1 for ; Fri, 14 Aug 2020 12:29:09 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CCCF020866 for ; Fri, 14 Aug 2020 12:29:08 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=paragon-software.com header.i=@paragon-software.com header.b="lA4Z5YPw" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728200AbgHNM3H (ORCPT ); Fri, 14 Aug 2020 08:29:07 -0400 Received: from relaydlg-01.paragon-software.com ([81.5.88.159]:35857 "EHLO relaydlg-01.paragon-software.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728080AbgHNM3G (ORCPT ); Fri, 14 Aug 2020 08:29:06 -0400 Received: from dlg2.mail.paragon-software.com (vdlg-exch-02.paragon-software.com [172.30.1.105]) by relaydlg-01.paragon-software.com (Postfix) with ESMTPS id 3D99D821D8; Fri, 14 Aug 2020 15:29:02 +0300 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=paragon-software.com; s=mail; t=1597408142; bh=Iw6Y6XZXPaiabTVuM/0vS3/cljuK3vSfRRU2EX8bVMA=; h=From:To:Subject:Date; b=lA4Z5YPwe9WgHrXODDC1MVvwajy2Beq5KfP5h5nZ6Ic3w9SzPTCoqju4YHY6IcNaK +WSjEDAnOkZthBRFZjKL+9b01hwp2y3bHRpX44PWfuO10S0z6POKSd8IrH/ADRHXuZ adlLVt2OItXOMaN0v7Ocb0WAPcJ1t1mgB7YcH7hY= Received: from vdlg-exch-02.paragon-software.com (172.30.1.105) by vdlg-exch-02.paragon-software.com (172.30.1.105) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1847.3; Fri, 14 Aug 2020 15:29:01 +0300 Received: from vdlg-exch-02.paragon-software.com ([fe80::586:6d72:3fe5:bd9b]) by vdlg-exch-02.paragon-software.com ([fe80::586:6d72:3fe5:bd9b%6]) with mapi id 15.01.1847.003; Fri, 14 Aug 2020 15:29:01 +0300 From: Konstantin Komarov To: "viro@zeniv.linux.org.uk" , "linux-kernel@vger.kernel.org" , "linux-fsdevel@vger.kernel.org" Subject: [PATCH] fs: NTFS read-write driver GPL implementation by Paragon Software. Thread-Topic: [PATCH] fs: NTFS read-write driver GPL implementation by Paragon Software. Thread-Index: AdZyNcmjSkpkGje7R9K6YobJrVDyZw== Date: Fri, 14 Aug 2020 12:29:01 +0000 Message-ID: <2911ac5cd20b46e397be506268718d74@paragon-software.com> Accept-Language: ru-RU, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [172.30.8.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This patch adds NTFS Read-Write driver to fs/ntfs3. Having decades of expertise in commercial file systems development and huge test coverage, we at Paragon Software GmbH want to make our contribution to the Open Source Community by providing implementation of NTFS Read-Write driver for the Linux Kernel. This is fully functional NTFS Read-Write driver. Current version works with NTFS(including v3.1) normal/compressed/sparse files and supports journal re= playing. We plan to support this version after the codebase once merged, and add new features and fix bugs. For example, full journaling support over JBD will b= e added in later updates. The patch is too big to handle it within an e-mail body, so it is available= to download=20 on our server: https://dl.paragon-software.com/ntfs3/ntfs3.patch Signed-off-by: Konstantin Komarov