* [GIT PULL] Quota, reiserfs, udf updates for 3.17-rc1
@ 2014-08-11 11:38 Jan Kara
2014-08-12 10:45 ` Jan Kara
0 siblings, 1 reply; 2+ messages in thread
From: Jan Kara @ 2014-08-11 11:38 UTC (permalink / raw)
To: Linus Torvalds; +Cc: LKML, linux-fsdevel
Hello Linus,
could you please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git for_linus
to get scalability improvements for quota, a few reiserfs fixes, and couple
of misc cleanups (udf, ext2).
Top of the tree is 20601c5299c8. The full shortlog is:
Andy Shevchenko (1):
fs/udf: re-use hex_asc_upper_{hi,lo} macros
Chao Yu (1):
udf: avoid redundant memcpy when writing data in ICB
Fabian Frederick (2):
udf: use linux/uaccess.h
fs/quota: kernel-doc warning fixes
Himangi Saraogi (1):
fs/ext2/super.c: Drop memory allocation cast
Jan Kara (2):
reiserfs: Avoid warning from unlock_new_inode()
reiserfs: Fix use after free in journal teardown
Jeff Mahoney (1):
reiserfs: fix corruption introduced by balance_leaf refactor
Niu Yawei (5):
quota: missing lock in dqcache_shrink_scan()
quota: protect Q_GETFMT by dqonoff_mutex
quota: avoid unnecessary dqget()/dqput() calls
quota: simplify remove_inode_dquot_ref()
quota: remove dqptr_sem
The diffstat is
fs/ext2/super.c | 2 +-
fs/quota/dquot.c | 182 +++++++++++++++++++++++--------------------------
fs/quota/kqid.c | 2 +-
fs/quota/netlink.c | 3 +-
fs/quota/quota.c | 6 +-
fs/reiserfs/do_balan.c | 111 +++++++++++++++++-------------
fs/reiserfs/journal.c | 22 ++++--
fs/reiserfs/lbalance.c | 5 +-
fs/reiserfs/namei.c | 41 ++++++-----
fs/reiserfs/reiserfs.h | 9 +--
fs/reiserfs/super.c | 6 +-
fs/super.c | 1 -
fs/udf/file.c | 22 +-----
fs/udf/lowlevel.c | 2 +-
fs/udf/super.c | 2 +-
fs/udf/symlink.c | 2 +-
fs/udf/unicode.c | 9 ++-
include/linux/quota.h | 1 -
18 files changed, 216 insertions(+), 212 deletions(-)
Thanks
Honza
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] Quota, reiserfs, udf updates for 3.17-rc1
2014-08-11 11:38 [GIT PULL] Quota, reiserfs, udf updates for 3.17-rc1 Jan Kara
@ 2014-08-12 10:45 ` Jan Kara
0 siblings, 0 replies; 2+ messages in thread
From: Jan Kara @ 2014-08-12 10:45 UTC (permalink / raw)
To: Linus Torvalds; +Cc: LKML, linux-fsdevel
On Mon 11-08-14 13:38:03, Jan Kara wrote:
> Hello Linus,
>
> could you please pull from
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git for_linus
>
> to get scalability improvements for quota, a few reiserfs fixes, and couple
> of misc cleanups (udf, ext2).
Jeff Mahoney has found that my patch "reiserfs: Avoid warning from
unlock_new_inode()" is unnecessarily complicating the code since the real
problem is somewhere else than I thought. And since you didn't pull yet
it's unnecessary to have that patch in and then clean it up in another
patch. So just scratch this pull request and I'll send you a new one without
the problematic patch in a while. Sorry for confusion.
Honza
>
> Top of the tree is 20601c5299c8. The full shortlog is:
>
> Andy Shevchenko (1):
> fs/udf: re-use hex_asc_upper_{hi,lo} macros
>
> Chao Yu (1):
> udf: avoid redundant memcpy when writing data in ICB
>
> Fabian Frederick (2):
> udf: use linux/uaccess.h
> fs/quota: kernel-doc warning fixes
>
> Himangi Saraogi (1):
> fs/ext2/super.c: Drop memory allocation cast
>
> Jan Kara (2):
> reiserfs: Avoid warning from unlock_new_inode()
> reiserfs: Fix use after free in journal teardown
>
> Jeff Mahoney (1):
> reiserfs: fix corruption introduced by balance_leaf refactor
>
> Niu Yawei (5):
> quota: missing lock in dqcache_shrink_scan()
> quota: protect Q_GETFMT by dqonoff_mutex
> quota: avoid unnecessary dqget()/dqput() calls
> quota: simplify remove_inode_dquot_ref()
> quota: remove dqptr_sem
>
> The diffstat is
>
> fs/ext2/super.c | 2 +-
> fs/quota/dquot.c | 182 +++++++++++++++++++++++--------------------------
> fs/quota/kqid.c | 2 +-
> fs/quota/netlink.c | 3 +-
> fs/quota/quota.c | 6 +-
> fs/reiserfs/do_balan.c | 111 +++++++++++++++++-------------
> fs/reiserfs/journal.c | 22 ++++--
> fs/reiserfs/lbalance.c | 5 +-
> fs/reiserfs/namei.c | 41 ++++++-----
> fs/reiserfs/reiserfs.h | 9 +--
> fs/reiserfs/super.c | 6 +-
> fs/super.c | 1 -
> fs/udf/file.c | 22 +-----
> fs/udf/lowlevel.c | 2 +-
> fs/udf/super.c | 2 +-
> fs/udf/symlink.c | 2 +-
> fs/udf/unicode.c | 9 ++-
> include/linux/quota.h | 1 -
> 18 files changed, 216 insertions(+), 212 deletions(-)
>
> Thanks
> Honza
> --
> Jan Kara <jack@suse.cz>
> SUSE Labs, CR
--
Jan Kara <jack@suse.cz>
SUSE Labs, CR
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-08-12 10:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-11 11:38 [GIT PULL] Quota, reiserfs, udf updates for 3.17-rc1 Jan Kara
2014-08-12 10:45 ` Jan Kara
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).