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 <[email protected]>
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
Hi,
On Sat, 24 Nov 2012 14:28:45 +0900 Jaegeuk Kim <[email protected]> wrote:
>
> 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.
I have no problem adding this to linux-next (and noone has screamed aver
the past few days, so that is a good sign) except that the branch you
have submitted is actually based on linux-next itself. You cannot base
anything on linux-next as it rebases every day. You need to base your
tree in Linus' tree (or some other *stable* tree).
--
Cheers,
Stephen Rothwell [email protected]
Hi,
2012-11-26 (월), 10:18 +1100, Stephen Rothwell:
> Hi,
>
> On Sat, 24 Nov 2012 14:28:45 +0900 Jaegeuk Kim <[email protected]> wrote:
> >
> > 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.
>
> I have no problem adding this to linux-next (and noone has screamed aver
> the past few days, so that is a good sign) except that the branch you
> have submitted is actually based on linux-next itself. You cannot base
> anything on linux-next as it rebases every day. You need to base your
> tree in Linus' tree (or some other *stable* tree).
>
I've done making a correct tree.
Could you please merge the following f2fs patches?
1. tree
git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
2. branch
dev
3. Contact
Jaegeuk Kim <[email protected]>
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(+)
--
Jaegeuk Kim
Samsung
Hi,
On Mon, 26 Nov 2012 20:37:40 +0900 Jaegeuk Kim <[email protected]> wrote:
>
> 2012-11-26 (월), 10:18 +1100, Stephen Rothwell:
> >
> > On Sat, 24 Nov 2012 14:28:45 +0900 Jaegeuk Kim <[email protected]> wrote:
> > >
> > > 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.
> >
> > I have no problem adding this to linux-next (and noone has screamed aver
> > the past few days, so that is a good sign) except that the branch you
> > have submitted is actually based on linux-next itself. You cannot base
> > anything on linux-next as it rebases every day. You need to base your
> > tree in Linus' tree (or some other *stable* tree).
>
> I've done making a correct tree.
> Could you please merge the following f2fs patches?
>
> 1. tree
> git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
>
> 2. branch
> dev
>
> 3. Contact
> Jaegeuk Kim <[email protected]>
OK, that looks much better. Added from today. In case you are not
aware, I will attempt to refetch that branch every morning before I start
merging the bits of linux-next together. So any changes you make to that
branch should be reflected in the next linux-next release.
Thanks for adding your subsystem tree as a participant of linux-next. As
you may know, this is not a judgment of your code. The purpose of
linux-next is for integration testing and to lower the impact of
conflicts between subsystems in the next merge window.
You will need to ensure that the patches/commits in your tree/series have
been:
* submitted under GPL v2 (or later) and include the Contributor's
Signed-off-by,
* posted to the relevant mailing list,
* reviewed by you (or another maintainer of your subsystem tree),
* successfully unit tested, and
* destined for the current or next Linux merge window.
Basically, this should be just what you would send to Linus (or ask him
to fetch). It is allowed to be rebased if you deem it necessary.
--
Cheers,
Stephen Rothwell
[email protected]
Legal Stuff:
By participating in linux-next, your subsystem tree contributions are
public and will be included in the linux-next trees. You may be sent
e-mail messages indicating errors or other issues when the
patches/commits from your subsystem tree are merged and tested in
linux-next. These messages may also be cross-posted to the linux-next
mailing list, the linux-kernel mailing list, etc. The linux-next tree
project and IBM (my employer) make no warranties regarding the linux-next
project, the testing procedures, the results, the e-mails, etc. If you
don't agree to these ground rules, let me know and I'll remove your tree
from participation in linux-next.