From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 682BB70 for ; Tue, 27 Jul 2021 15:47:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1627400867; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=ralyV5G7XJkmcT2GXx/j2umoacDKJ2ppZ813mNupf+4=; b=g1Hxk2Ybke99/XhiMRMR4M05J91Q8qtB/L7gNERmIfg/iu3bWJsDXE6Ufeja24Zafsx/6r TJRSQCRFoe3lGqhTI+vmSZLcdMWGdcE0aknqusr68PYx0qjBTX6CewDlENkUVK8Qnfeqvt VcV98c3xUFxvdjsrhFwpG5uIEfnAhcs= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-212--tPwhjigM7-Tm0m0FAyATw-1; Tue, 27 Jul 2021 11:47:45 -0400 X-MC-Unique: -tPwhjigM7-Tm0m0FAyATw-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id F2DDA18C8C00; Tue, 27 Jul 2021 15:47:40 +0000 (UTC) Received: from file01.intranet.prod.int.rdu2.redhat.com (file01.intranet.prod.int.rdu2.redhat.com [10.11.5.7]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8A6965D9FC; Tue, 27 Jul 2021 15:47:40 +0000 (UTC) Received: from file01.intranet.prod.int.rdu2.redhat.com (localhost [127.0.0.1]) by file01.intranet.prod.int.rdu2.redhat.com (8.14.4/8.14.4) with ESMTP id 16RFldMM011955; Tue, 27 Jul 2021 11:47:39 -0400 Received: from localhost (mpatocka@localhost) by file01.intranet.prod.int.rdu2.redhat.com (8.14.4/8.14.4/Submit) with ESMTP id 16RFlb1u011951; Tue, 27 Jul 2021 11:47:37 -0400 X-Authentication-Warning: file01.intranet.prod.int.rdu2.redhat.com: mpatocka owned process doing -bs Date: Tue, 27 Jul 2021 11:47:37 -0400 (EDT) From: Mikulas Patocka X-X-Sender: mpatocka@file01.intranet.prod.int.rdu2.redhat.com To: Alexander Viro , Matthew Wilcox , Jan Kara , Zhongwei Cai , Mingkai Dong , Dan Williams , Vishal Verma , Dave Jiang , Ira Weiny , Eric Sandeen , Andrew Morton , "Theodore Ts'o" cc: linux-kernel , linux-fsdevel , linux-nvdimm , nvdimm@lists.linux.dev Subject: [RFC v4] nvfs: a filesystem for persistent memory Message-ID: User-Agent: Alpine 2.02 (LRH 1266 2009-07-14) Precedence: bulk X-Mailing-List: nvdimm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Hi I announce a new version of NVFS - a filesystem for persistent memory. You can download it at: http://people.redhat.com/~mpatocka/nvfs/ git://leontynka.twibright.com/nvfs.git Description of the filesystem layout: http://people.redhat.com/~mpatocka/nvfs/INTERNALS Changes since the last release: * updated for the kernels 5.13 and 5.14-rc * add the ability to export the NVFS filesystem over NFS: - each directory contains a pointer to its parent directory - add the 'generation' field to inodes - the ability to open files by inode numbers * fixed some endianity conversions * fixed some sparse warnings * fixed a bug in extended attributes Mikulas