From: Marco Stornelli <marco.stornelli@gmail.com>
To: Linux FS Devel <linux-fsdevel@vger.kernel.org>
Cc: Vladimir Davydov <vdavydov@parallels.com>,
Linux Kernel <linux-kernel@vger.kernel.org>
Subject: [PATCH 00/19] pramfs
Date: Sat, 07 Sep 2013 10:14:04 +0200 [thread overview]
Message-ID: <522AE04C.6000002@gmail.com> (raw)
Hi all,
this is an attempt to include pramfs in mainline. At the moment pramfs
has been included in LTSI kernel. Since last review the code is more
or less the same but, with a really big thanks to Vladimir Davydov and
Parallels, the development of fsck has been started and we have now
the possibility to correct fs errors due to corruption. It's a "young"
tool but we are working on it. You can clone the code from our repos:
git clone git://git.code.sf.net/p/pramfs/code pramfs-code
git clone git://git.code.sf.net/p/pramfs/Tools pramfs-Tools
Marco Stornelli (19):
pramfs: documentation
pramfs: add x86 set_memory_{rw|ro} flag
pramfs: export xip_file_fault
pramfs: add include files
pramfs: super block operations
pramfs: inode operations
pramfs: file operations
pramfs: file operations for dirs
pramfs: inode operations for dirs
pramfs: block allocation
pramfs: ioctl operations
pramfs: symlink operations
pramfs: xip operations
pramfs: extended attributes block description tree
pramfs: extended attributes
pramfs: acl operations
pramfs: write protection
pramfs: test module
pramfs: Kconfig and makefile
Documentation/filesystems/pramfs.txt | 177 ++++++
Documentation/filesystems/xip.txt | 2 +
MAINTAINERS | 9 +
arch/Kconfig | 3 +
arch/x86/Kconfig | 1 +
fs/Kconfig | 6 +-
fs/Makefile | 1 +
fs/pramfs/Kconfig | 72 +++
fs/pramfs/Makefile | 14 +
fs/pramfs/acl.c | 415 +++++++++++++
fs/pramfs/acl.h | 85 +++
fs/pramfs/balloc.c | 160 +++++
fs/pramfs/desctree.c | 181 ++++++
fs/pramfs/desctree.h | 44 ++
fs/pramfs/dir.c | 226 +++++++
fs/pramfs/file.c | 417 +++++++++++++
fs/pramfs/inode.c | 907 +++++++++++++++++++++++++++
fs/pramfs/ioctl.c | 127 ++++
fs/pramfs/namei.c | 391 ++++++++++++
fs/pramfs/pram.h | 283 +++++++++
fs/pramfs/pramfs_test.c | 47 ++
fs/pramfs/super.c | 994 ++++++++++++++++++++++++++++++
fs/pramfs/symlink.c | 76 +++
fs/pramfs/wprotect.c | 39 ++
fs/pramfs/wprotect.h | 144 +++++
fs/pramfs/xattr.c | 1118 ++++++++++++++++++++++++++++++++++
fs/pramfs/xattr.h | 92 +++
fs/pramfs/xattr_security.c | 80 +++
fs/pramfs/xattr_trusted.c | 65 ++
fs/pramfs/xattr_user.c | 69 +++
fs/pramfs/xip.c | 119 ++++
fs/pramfs/xip.h | 33 +
include/linux/fs.h | 2 +
include/linux/pram_fs.h | 48 ++
include/uapi/linux/Kbuild | 1 +
include/uapi/linux/magic.h | 1 +
include/uapi/linux/pram_fs.h | 192 ++++++
mm/filemap_xip.c | 3 +-
38 files changed, 6641 insertions(+), 3 deletions(-)
create mode 100644 Documentation/filesystems/pramfs.txt
create mode 100644 fs/pramfs/Kconfig
create mode 100644 fs/pramfs/Makefile
create mode 100644 fs/pramfs/acl.c
create mode 100644 fs/pramfs/acl.h
create mode 100644 fs/pramfs/balloc.c
create mode 100644 fs/pramfs/desctree.c
create mode 100644 fs/pramfs/desctree.h
create mode 100644 fs/pramfs/dir.c
create mode 100644 fs/pramfs/file.c
create mode 100644 fs/pramfs/inode.c
create mode 100644 fs/pramfs/ioctl.c
create mode 100644 fs/pramfs/namei.c
create mode 100644 fs/pramfs/pram.h
create mode 100644 fs/pramfs/pramfs_test.c
create mode 100644 fs/pramfs/super.c
create mode 100644 fs/pramfs/symlink.c
create mode 100644 fs/pramfs/wprotect.c
create mode 100644 fs/pramfs/wprotect.h
create mode 100644 fs/pramfs/xattr.c
create mode 100644 fs/pramfs/xattr.h
create mode 100644 fs/pramfs/xattr_security.c
create mode 100644 fs/pramfs/xattr_trusted.c
create mode 100644 fs/pramfs/xattr_user.c
create mode 100644 fs/pramfs/xip.c
create mode 100644 fs/pramfs/xip.h
create mode 100644 include/linux/pram_fs.h
create mode 100644 include/uapi/linux/pram_fs.h
--
1.7.3.4
---
next reply other threads:[~2013-09-07 8:21 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-07 8:14 Marco Stornelli [this message]
2013-09-07 14:58 ` [PATCH 00/19] pramfs richard -rw- weinberger
2013-09-07 16:22 ` Marco Stornelli
2013-09-08 9:05 ` Vladimir Davydov
2013-09-08 9:34 ` Marco Stornelli
2013-09-08 6:49 ` Marco Stornelli
2013-09-08 23:40 ` Dave Chinner
2013-09-09 18:13 ` Marco Stornelli
2013-09-09 23:28 ` Dave Chinner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=522AE04C.6000002@gmail.com \
--to=marco.stornelli@gmail.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=vdavydov@parallels.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).