* [GIT PULL] f2fs fixes for 3.8-rc2
@ 2012-12-28 1:54 Jaegeuk Kim
2012-12-28 2:00 ` Sedat Dilek
0 siblings, 1 reply; 4+ messages in thread
From: Jaegeuk Kim @ 2012-12-28 1:54 UTC (permalink / raw)
To: Linus Torvalds
Cc: Linux Kernel, Mailing List, Linux FS DEV, Mailing List,
Linux F2FS DEV, Mailing List
[-- Attachment #1: Type: text/plain, Size: 3088 bytes --]
Hi Linus,
Please pull the following patches for bug fixes on the f2fs file system.
Thank you very much.
--
Jaegeuk Kim
Samsung
The following changes since commit
637704cbc95c02d18741b4a6e7a5d2397f8b28ce:
Merge branch 'i2c-embedded/for-next' of
git://git.pengutronix.de/git/wsa/linux (2012-12-23 09:48:33 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
tags/for-linus
for you to fetch changes up to 782c92d129775840cf9c1ad334f0722df9c76dc0:
f2fs: unify string length declarations and usage (2012-12-28 09:57:55
+0900)
----------------------------------------------------------------
f2fs: bug fixes for 3.8-rc2
This patch-set includes two major bug fixes:
- incorrect IUsed provided by *df -i*, and
- lookup failure of parent inodes in corner cases.
[Other Bug Fixes]
- Fix error handling routines
- Trigger recovery process correctly
- Resolve build failures due to missing header files
[Etc]
- Add a MAINTAINERS entry for f2fs
- Fix and clean up variables, functions, and equations
- Avoid warnings during compilation
----------------------------------------------------------------
Geert Uytterhoeven (1):
f2fs: add missing #include <linux/prefetch.h>
Jaegeuk Kim (11):
f2fs: remove set_page_dirty for atomic f2fs_end_io_write
f2fs: fix wrong calculation on f_files in statfs
f2fs: fix handling errors got by f2fs_write_inode
f2fs: should recover orphan and fsync data
f2fs: do f2fs_balance_fs in front of dir operations
f2fs: invalidate the node page if allocation is failed
f2fs: return a default value for non-void function
f2fs: add MAINTAINERS entry
f2fs: fix equation of has_not_enough_free_secs()
f2fs: clean up the start_bidx_of_node function
f2fs: clean up unused variables and return values
Leon Romanovsky (1):
f2fs: unify string length declarations and usage
Namjae Jeon (5):
f2fs: fix up f2fs_get_parent issue to retrieve correct parent
inode number
f2fs: handle error from f2fs_iget_nowait
f2fs: remove unneeded initialization of nr_dirty in
dirty_seglist_info
f2fs: fix fsync_inode list addition logic and avoid invalid access
to memory
f2fs: remove unneeded variable from f2fs_sync_fs
MAINTAINERS | 10 ++++++++++
fs/f2fs/data.c | 1 +
fs/f2fs/dir.c | 16 +++++++++-------
fs/f2fs/f2fs.h | 2 +-
fs/f2fs/file.c | 10 ++++++----
fs/f2fs/gc.c | 34 +++++++++++-----------------------
fs/f2fs/hash.c | 18 +++++++++++-------
fs/f2fs/inode.c | 1 +
fs/f2fs/namei.c | 34 +++++++++++++++++-----------------
fs/f2fs/node.c | 37 ++++++++++++++-----------------------
fs/f2fs/recovery.c | 10 +++++++---
fs/f2fs/segment.c | 46 ++++++----------------------------------------
fs/f2fs/segment.h | 15 ++++++++++++++-
fs/f2fs/super.c | 15 ++++++---------
fs/f2fs/xattr.c | 5 +++--
15 files changed, 117 insertions(+), 137 deletions(-)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] f2fs fixes for 3.8-rc2
2012-12-28 1:54 [GIT PULL] f2fs fixes for 3.8-rc2 Jaegeuk Kim
@ 2012-12-28 2:00 ` Sedat Dilek
2012-12-28 2:34 ` Jaegeuk Kim
0 siblings, 1 reply; 4+ messages in thread
From: Sedat Dilek @ 2012-12-28 2:00 UTC (permalink / raw)
To: jaegeuk.kim
Cc: Linus Torvalds, Linux Kernel, Mailing List,
Linux FS DEV, Mailing List, Linux F2FS DEV, Mailing List
Looks like you didn't S-o-b-ed all patches in your tree (see Leon's or
Geert's patch).
- Sedat -
On Fri, Dec 28, 2012 at 2:54 AM, Jaegeuk Kim <jaegeuk.kim@samsung.com> wrote:
> Hi Linus,
>
> Please pull the following patches for bug fixes on the f2fs file system.
> Thank you very much.
>
> --
> Jaegeuk Kim
> Samsung
>
> The following changes since commit
> 637704cbc95c02d18741b4a6e7a5d2397f8b28ce:
>
> Merge branch 'i2c-embedded/for-next' of
> git://git.pengutronix.de/git/wsa/linux (2012-12-23 09:48:33 -0800)
>
> are available in the git repository at:
>
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
> tags/for-linus
>
> for you to fetch changes up to 782c92d129775840cf9c1ad334f0722df9c76dc0:
>
> f2fs: unify string length declarations and usage (2012-12-28 09:57:55
> +0900)
>
> ----------------------------------------------------------------
> f2fs: bug fixes for 3.8-rc2
>
> This patch-set includes two major bug fixes:
> - incorrect IUsed provided by *df -i*, and
> - lookup failure of parent inodes in corner cases.
>
> [Other Bug Fixes]
> - Fix error handling routines
> - Trigger recovery process correctly
> - Resolve build failures due to missing header files
>
> [Etc]
> - Add a MAINTAINERS entry for f2fs
> - Fix and clean up variables, functions, and equations
> - Avoid warnings during compilation
>
> ----------------------------------------------------------------
> Geert Uytterhoeven (1):
> f2fs: add missing #include <linux/prefetch.h>
>
> Jaegeuk Kim (11):
> f2fs: remove set_page_dirty for atomic f2fs_end_io_write
> f2fs: fix wrong calculation on f_files in statfs
> f2fs: fix handling errors got by f2fs_write_inode
> f2fs: should recover orphan and fsync data
> f2fs: do f2fs_balance_fs in front of dir operations
> f2fs: invalidate the node page if allocation is failed
> f2fs: return a default value for non-void function
> f2fs: add MAINTAINERS entry
> f2fs: fix equation of has_not_enough_free_secs()
> f2fs: clean up the start_bidx_of_node function
> f2fs: clean up unused variables and return values
>
> Leon Romanovsky (1):
> f2fs: unify string length declarations and usage
>
> Namjae Jeon (5):
> f2fs: fix up f2fs_get_parent issue to retrieve correct parent
> inode number
> f2fs: handle error from f2fs_iget_nowait
> f2fs: remove unneeded initialization of nr_dirty in
> dirty_seglist_info
> f2fs: fix fsync_inode list addition logic and avoid invalid access
> to memory
> f2fs: remove unneeded variable from f2fs_sync_fs
>
> MAINTAINERS | 10 ++++++++++
> fs/f2fs/data.c | 1 +
> fs/f2fs/dir.c | 16 +++++++++-------
> fs/f2fs/f2fs.h | 2 +-
> fs/f2fs/file.c | 10 ++++++----
> fs/f2fs/gc.c | 34 +++++++++++-----------------------
> fs/f2fs/hash.c | 18 +++++++++++-------
> fs/f2fs/inode.c | 1 +
> fs/f2fs/namei.c | 34 +++++++++++++++++-----------------
> fs/f2fs/node.c | 37 ++++++++++++++-----------------------
> fs/f2fs/recovery.c | 10 +++++++---
> fs/f2fs/segment.c | 46 ++++++----------------------------------------
> fs/f2fs/segment.h | 15 ++++++++++++++-
> fs/f2fs/super.c | 15 ++++++---------
> fs/f2fs/xattr.c | 5 +++--
> 15 files changed, 117 insertions(+), 137 deletions(-)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [GIT PULL] f2fs fixes for 3.8-rc2
2012-12-28 2:00 ` Sedat Dilek
@ 2012-12-28 2:34 ` Jaegeuk Kim
2012-12-28 2:47 ` [GIT PULL v2] " Jaegeuk Kim
0 siblings, 1 reply; 4+ messages in thread
From: Jaegeuk Kim @ 2012-12-28 2:34 UTC (permalink / raw)
To: sedat.dilek
Cc: Linus Torvalds, Linux Kernel, Mailing List,
Linux FS DEV, Mailing List, Linux F2FS DEV, Mailing List
[-- Attachment #1: Type: text/plain, Size: 4005 bytes --]
2012-12-28 (금), 03:00 +0100, Sedat Dilek:
> Looks like you didn't S-o-b-ed all patches in your tree (see Leon's or
> Geert's patch).
I've fixed all the patches.
Thank you. :)
>
> - Sedat -
>
> On Fri, Dec 28, 2012 at 2:54 AM, Jaegeuk Kim <jaegeuk.kim@samsung.com> wrote:
> > Hi Linus,
> >
> > Please pull the following patches for bug fixes on the f2fs file system.
> > Thank you very much.
> >
> > --
> > Jaegeuk Kim
> > Samsung
> >
> > The following changes since commit
> > 637704cbc95c02d18741b4a6e7a5d2397f8b28ce:
> >
> > Merge branch 'i2c-embedded/for-next' of
> > git://git.pengutronix.de/git/wsa/linux (2012-12-23 09:48:33 -0800)
> >
> > are available in the git repository at:
> >
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
> > tags/for-linus
> >
> > for you to fetch changes up to 782c92d129775840cf9c1ad334f0722df9c76dc0:
> >
> > f2fs: unify string length declarations and usage (2012-12-28 09:57:55
> > +0900)
> >
> > ----------------------------------------------------------------
> > f2fs: bug fixes for 3.8-rc2
> >
> > This patch-set includes two major bug fixes:
> > - incorrect IUsed provided by *df -i*, and
> > - lookup failure of parent inodes in corner cases.
> >
> > [Other Bug Fixes]
> > - Fix error handling routines
> > - Trigger recovery process correctly
> > - Resolve build failures due to missing header files
> >
> > [Etc]
> > - Add a MAINTAINERS entry for f2fs
> > - Fix and clean up variables, functions, and equations
> > - Avoid warnings during compilation
> >
> > ----------------------------------------------------------------
> > Geert Uytterhoeven (1):
> > f2fs: add missing #include <linux/prefetch.h>
> >
> > Jaegeuk Kim (11):
> > f2fs: remove set_page_dirty for atomic f2fs_end_io_write
> > f2fs: fix wrong calculation on f_files in statfs
> > f2fs: fix handling errors got by f2fs_write_inode
> > f2fs: should recover orphan and fsync data
> > f2fs: do f2fs_balance_fs in front of dir operations
> > f2fs: invalidate the node page if allocation is failed
> > f2fs: return a default value for non-void function
> > f2fs: add MAINTAINERS entry
> > f2fs: fix equation of has_not_enough_free_secs()
> > f2fs: clean up the start_bidx_of_node function
> > f2fs: clean up unused variables and return values
> >
> > Leon Romanovsky (1):
> > f2fs: unify string length declarations and usage
> >
> > Namjae Jeon (5):
> > f2fs: fix up f2fs_get_parent issue to retrieve correct parent
> > inode number
> > f2fs: handle error from f2fs_iget_nowait
> > f2fs: remove unneeded initialization of nr_dirty in
> > dirty_seglist_info
> > f2fs: fix fsync_inode list addition logic and avoid invalid access
> > to memory
> > f2fs: remove unneeded variable from f2fs_sync_fs
> >
> > MAINTAINERS | 10 ++++++++++
> > fs/f2fs/data.c | 1 +
> > fs/f2fs/dir.c | 16 +++++++++-------
> > fs/f2fs/f2fs.h | 2 +-
> > fs/f2fs/file.c | 10 ++++++----
> > fs/f2fs/gc.c | 34 +++++++++++-----------------------
> > fs/f2fs/hash.c | 18 +++++++++++-------
> > fs/f2fs/inode.c | 1 +
> > fs/f2fs/namei.c | 34 +++++++++++++++++-----------------
> > fs/f2fs/node.c | 37 ++++++++++++++-----------------------
> > fs/f2fs/recovery.c | 10 +++++++---
> > fs/f2fs/segment.c | 46 ++++++----------------------------------------
> > fs/f2fs/segment.h | 15 ++++++++++++++-
> > fs/f2fs/super.c | 15 ++++++---------
> > fs/f2fs/xattr.c | 5 +++--
> > 15 files changed, 117 insertions(+), 137 deletions(-)
> >
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Jaegeuk Kim
Samsung
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
* [GIT PULL v2] f2fs fixes for 3.8-rc2
2012-12-28 2:34 ` Jaegeuk Kim
@ 2012-12-28 2:47 ` Jaegeuk Kim
0 siblings, 0 replies; 4+ messages in thread
From: Jaegeuk Kim @ 2012-12-28 2:47 UTC (permalink / raw)
To: Linus Torvalds
Cc: Linux Kernel, Mailing List, Linux FS DEV, Mailing List,
Linux FS DEV, Mailing List, Linux F2FS DEV, Mailing List,
sedat.dilek
[-- Attachment #1: Type: text/plain, Size: 3098 bytes --]
Hi Linus,
Sorry for the noise.
I've resolved the S-O-B issue in v1 tree.
Here is the pull request v2.
Thanks,
--
Jaegeuk Kim
Samsung
The following changes since commit
637704cbc95c02d18741b4a6e7a5d2397f8b28ce:
Merge branch 'i2c-embedded/for-next' of
git://git.pengutronix.de/git/wsa/linux (2012-12-23 09:48:33 -0800)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
tags/for-linus
for you to fetch changes up to 9836b8b9499cb25ea32cad9fff640eef874c5431:
f2fs: unify string length declarations and usage (2012-12-28 11:27:53
+0900)
----------------------------------------------------------------
f2fs: bug fixes for 3.8-rc2
This patch-set includes two major bug fixes:
- incorrect IUsed provided by *df -i*, and
- lookup failure of parent inodes in corner cases.
[Other Bug Fixes]
- Fix error handling routines
- Trigger recovery process correctly
- Resolve build failures due to missing header files
[Etc]
- Add a MAINTAINERS entry for f2fs
- Fix and clean up variables, functions, and equations
- Avoid warnings during compilation
----------------------------------------------------------------
Geert Uytterhoeven (1):
f2fs: add missing #include <linux/prefetch.h>
Jaegeuk Kim (11):
f2fs: remove set_page_dirty for atomic f2fs_end_io_write
f2fs: fix wrong calculation on f_files in statfs
f2fs: fix handling errors got by f2fs_write_inode
f2fs: should recover orphan and fsync data
f2fs: do f2fs_balance_fs in front of dir operations
f2fs: invalidate the node page if allocation is failed
f2fs: return a default value for non-void function
f2fs: add MAINTAINERS entry
f2fs: fix equation of has_not_enough_free_secs()
f2fs: clean up the start_bidx_of_node function
f2fs: clean up unused variables and return values
Leon Romanovsky (1):
f2fs: unify string length declarations and usage
Namjae Jeon (5):
f2fs: fix up f2fs_get_parent issue to retrieve correct parent
inode number
f2fs: handle error from f2fs_iget_nowait
f2fs: remove unneeded initialization of nr_dirty in
dirty_seglist_info
f2fs: fix fsync_inode list addition logic and avoid invalid access
to memory
f2fs: remove unneeded variable from f2fs_sync_fs
MAINTAINERS | 10 ++++++++++
fs/f2fs/data.c | 1 +
fs/f2fs/dir.c | 16 +++++++++-------
fs/f2fs/f2fs.h | 2 +-
fs/f2fs/file.c | 10 ++++++----
fs/f2fs/gc.c | 34 +++++++++++-----------------------
fs/f2fs/hash.c | 18 +++++++++++-------
fs/f2fs/inode.c | 1 +
fs/f2fs/namei.c | 34 +++++++++++++++++-----------------
fs/f2fs/node.c | 37 ++++++++++++++-----------------------
fs/f2fs/recovery.c | 10 +++++++---
fs/f2fs/segment.c | 46 ++++++----------------------------------------
fs/f2fs/segment.h | 15 ++++++++++++++-
fs/f2fs/super.c | 15 ++++++---------
fs/f2fs/xattr.c | 5 +++--
15 files changed, 117 insertions(+), 137 deletions(-)
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-12-28 2:47 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-28 1:54 [GIT PULL] f2fs fixes for 3.8-rc2 Jaegeuk Kim
2012-12-28 2:00 ` Sedat Dilek
2012-12-28 2:34 ` Jaegeuk Kim
2012-12-28 2:47 ` [GIT PULL v2] " 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).