linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RESEND] Request f2fs filesystem inclusion in linux-next
@ 2012-11-22 19:40 Jaegeuk Kim
  2012-11-25 23:18 ` Stephen Rothwell
  0 siblings, 1 reply; 5+ messages in thread
From: Jaegeuk Kim @ 2012-11-22 19:40 UTC (permalink / raw)
  To: sfr
  Cc: linux-fsdevel, linux-kernel, gregkh, viro, arnd, tytso, chur.lee,
	cm224.lee, jooyoung.hwang

Hi,

About two month ago, I submitted a new file system, namely
flash-friendly file system (f2fs) to LKML.
 http://en.wikipedia.org/wiki/F2FS
 http://lkml.org/lkml/2012/10/5/205
 http://lwn.net/Articles/518718/

In the mean time, many folks have pointed out several essential issues
on f2fs, and now I think most of them have been resolved moderately.

So, I'd like to request a new branch being included in linux-next for
the purpose of merging into the next mainline kernel.

The info for linux-next:

1. tree
git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/linux-next-f2fs.git

2. branch
f2fs

3. Contact
Jaegeuk Kim <jaegeuk.kim@samsung.com>

4. Short log

Greg Kroah-Hartman (1):
  f2fs: move proc files to debugfs

Jaegeuk Kim (16):
  f2fs: add document
  f2fs: add on-disk layout
  f2fs: add superblock and major in-memory structure
  f2fs: add super block operations
  f2fs: add checkpoint operations
  f2fs: add node operations
  f2fs: add segment operations
  f2fs: add file operations
  f2fs: add address space operations for data
  f2fs: add core inode operations
  f2fs: add inode operations for special inodes
  f2fs: add core directory operations
  f2fs: add xattr and acl functionalities
  f2fs: add garbage collection functions
  f2fs: add recovery routines for roll-forward
  f2fs: update Kconfig and Makefile

 Documentation/filesystems/00-INDEX |    2 + 
 Documentation/filesystems/f2fs.txt |  417 +++++++++
 fs/Kconfig                         |    1 + 
 fs/Makefile                        |    1 + 
 fs/f2fs/Kconfig                    |   52 ++
 fs/f2fs/Makefile                   |    7 + 
 fs/f2fs/acl.c                      |  465 ++++++++++
 fs/f2fs/acl.h                      |   57 ++
 fs/f2fs/checkpoint.c               |  792 ++++++++++++++++
 fs/f2fs/data.c                     |  701 ++++++++++++++
 fs/f2fs/debug.c                    |  361 ++++++++
 fs/f2fs/dir.c                      |  672 ++++++++++++++
 fs/f2fs/f2fs.h                     | 1062 +++++++++++++++++++++
 fs/f2fs/file.c                     |  637 +++++++++++++
 fs/f2fs/gc.c                       |  742 +++++++++++++++
 fs/f2fs/gc.h                       |  117 +++
 fs/f2fs/hash.c                     |   98 ++
 fs/f2fs/inode.c                    |  266 ++++++
 fs/f2fs/namei.c                    |  504 ++++++++++
 fs/f2fs/node.c                     | 1763
+++++++++++++++++++++++++++++++++++
 fs/f2fs/node.h                     |  353 +++++++
 fs/f2fs/recovery.c                 |  375 ++++++++
 fs/f2fs/segment.c                  | 1798
++++++++++++++++++++++++++++++++++++
 fs/f2fs/segment.h                  |  615 ++++++++++++
 fs/f2fs/super.c                    |  656 +++++++++++++
 fs/f2fs/xattr.c                    |  389 ++++++++
 fs/f2fs/xattr.h                    |  145 +++
 include/linux/f2fs_fs.h            |  410 ++++++++
 include/uapi/linux/magic.h         |    1 +
 29 files changed, 13459 insertions(+)

Any review comments welcome.
Thank you.

-- 
Jaegeuk Kim
Samsung

^ permalink raw reply	[flat|nested] 5+ messages in thread
* [RESEND] Request f2fs filesystem inclusion in linux-next
@ 2012-11-22 19:41 Jaegeuk Kim
  0 siblings, 0 replies; 5+ messages in thread
From: Jaegeuk Kim @ 2012-11-22 19:41 UTC (permalink / raw)
  To: sfr
  Cc: linux-fsdevel, linux-kernel, gregkh, viro, arnd, tytso, chur.lee,
	cm224.lee, jooyoung.hwang

Hi,

About two month ago, I submitted a new file system, namely
flash-friendly file system (f2fs) to LKML.
 http://en.wikipedia.org/wiki/F2FS
 http://lkml.org/lkml/2012/10/5/205
 http://lwn.net/Articles/518718/

In the mean time, many folks have pointed out several essential issues
on f2fs, and now I think most of them have been resolved moderately.

So, I'd like to request a new branch being included in linux-next for
the purpose of merging into the next mainline kernel.

The info for linux-next:

1. tree
git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/linux-next-f2fs.git

2. branch
f2fs

3. Contact
Jaegeuk Kim <jaegeuk.kim@samsung.com>

4. Short log

Greg Kroah-Hartman (1):
  f2fs: move proc files to debugfs

Jaegeuk Kim (16):
  f2fs: add document
  f2fs: add on-disk layout
  f2fs: add superblock and major in-memory structure
  f2fs: add super block operations
  f2fs: add checkpoint operations
  f2fs: add node operations
  f2fs: add segment operations
  f2fs: add file operations
  f2fs: add address space operations for data
  f2fs: add core inode operations
  f2fs: add inode operations for special inodes
  f2fs: add core directory operations
  f2fs: add xattr and acl functionalities
  f2fs: add garbage collection functions
  f2fs: add recovery routines for roll-forward
  f2fs: update Kconfig and Makefile

 Documentation/filesystems/00-INDEX |    2 + 
 Documentation/filesystems/f2fs.txt |  417 +++++++++
 fs/Kconfig                         |    1 + 
 fs/Makefile                        |    1 + 
 fs/f2fs/Kconfig                    |   52 ++
 fs/f2fs/Makefile                   |    7 + 
 fs/f2fs/acl.c                      |  465 ++++++++++
 fs/f2fs/acl.h                      |   57 ++
 fs/f2fs/checkpoint.c               |  792 ++++++++++++++++
 fs/f2fs/data.c                     |  701 ++++++++++++++
 fs/f2fs/debug.c                    |  361 ++++++++
 fs/f2fs/dir.c                      |  672 ++++++++++++++
 fs/f2fs/f2fs.h                     | 1062 +++++++++++++++++++++
 fs/f2fs/file.c                     |  637 +++++++++++++
 fs/f2fs/gc.c                       |  742 +++++++++++++++
 fs/f2fs/gc.h                       |  117 +++
 fs/f2fs/hash.c                     |   98 ++
 fs/f2fs/inode.c                    |  266 ++++++
 fs/f2fs/namei.c                    |  504 ++++++++++
 fs/f2fs/node.c                     | 1763
+++++++++++++++++++++++++++++++++++
 fs/f2fs/node.h                     |  353 +++++++
 fs/f2fs/recovery.c                 |  375 ++++++++
 fs/f2fs/segment.c                  | 1798
++++++++++++++++++++++++++++++++++++
 fs/f2fs/segment.h                  |  615 ++++++++++++
 fs/f2fs/super.c                    |  656 +++++++++++++
 fs/f2fs/xattr.c                    |  389 ++++++++
 fs/f2fs/xattr.h                    |  145 +++
 include/linux/f2fs_fs.h            |  410 ++++++++
 include/uapi/linux/magic.h         |    1 +
 29 files changed, 13459 insertions(+)

Any review comments welcome.
Thank you.

-- 
Jaegeuk Kim
Samsung



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-11-26 22:48 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-22 19:40 [RESEND] Request f2fs filesystem inclusion in linux-next Jaegeuk Kim
2012-11-25 23:18 ` Stephen Rothwell
2012-11-26 11:37   ` Jaegeuk Kim
2012-11-26 22:48     ` Stephen Rothwell
  -- strict thread matches above, loose matches on Subject: below --
2012-11-22 19:41 Jaegeuk Kim

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).