linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] vfs for rc2, part 1
@ 2010-08-18 15:35 Al Viro
  2010-08-18 16:44 ` Linus Torvalds
  0 siblings, 1 reply; 3+ messages in thread
From: Al Viro @ 2010-08-18 15:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	Assorted fixes + subset of Nick's series + few bits lost from the
last pile.  Please, pull from the usual place:

git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6.git/

	Tomorrow: freeze/thaw fixes and big code movement series (partitioning
and otherwise block-related)...

Shortlog:
Al Viro (2):
      hostfs: dumb (and usually harmless) tpyo - strncpy instead of strlcpy
      hostfs ->follow_link() braino

Alexander Shishkin (1):
      cramfs: only unlock new inodes

Andreas Gruenbacher (1):
      mbcache: Limit the maximum number of cache entries

Christoph Hellwig (2):
      kill BH_Ordered flag
      remove SWRITE* I/O types

Jan Kara (1):
      vfs: update ctime when changing the file's permission by setfacl

Nick Piggin (10):
      fs: fix do_lookup false negative
      fs: dentry allocation consolidation
      apparmor: use task path helpers
      fs: fs_struct rwlock to spinlock
      fs: remove extra lookup in __lookup_hash
      fs: cleanup files_lock locking
      tty: fix fu_list abuse
      lglock: introduce special lglock and brlock spin locks
      fs: scale files_lock
      fs: brlock vfsmount_lock

Sergey Senozhatsky (1):
      fix reiserfs_evict_inode end_writeback second call

Diffstat:
 drivers/char/pty.c                    |    4 +-
 drivers/char/tty_io.c                 |   92 ++++++++++++------
 drivers/staging/pohmelfs/path_entry.c |    8 +-
 fs/buffer.c                           |   69 +++++++------
 fs/cramfs/inode.c                     |    2 +-
 fs/dcache.c                           |   71 ++++++++------
 fs/exec.c                             |    4 +-
 fs/fat/misc.c                         |    4 +-
 fs/file_table.c                       |  124 ++++++++++++++++++------
 fs/fs_struct.c                        |   32 +++---
 fs/generic_acl.c                      |    1 +
 fs/hostfs/hostfs_kern.c               |    4 +-
 fs/internal.h                         |    7 +-
 fs/jbd/checkpoint.c                   |    4 +-
 fs/jbd/commit.c                       |   53 +++++-----
 fs/jbd/journal.c                      |    2 +-
 fs/jbd/revoke.c                       |    2 +-
 fs/jbd2/checkpoint.c                  |    4 +-
 fs/jbd2/commit.c                      |   41 +++-----
 fs/jbd2/journal.c                     |    2 +-
 fs/jbd2/revoke.c                      |    2 +-
 fs/mbcache.c                          |   30 +++++-
 fs/namei.c                            |  119 ++++++++++------------
 fs/namespace.c                        |  177 +++++++++++++++++++++------------
 fs/nilfs2/super.c                     |   28 +++---
 fs/open.c                             |    4 +-
 fs/pnode.c                            |   11 ++-
 fs/reiserfs/inode.c                   |    1 +
 fs/reiserfs/journal.c                 |    2 +-
 fs/super.c                            |   18 ++++
 fs/ufs/balloc.c                       |   24 ++---
 fs/ufs/ialloc.c                       |   18 +---
 fs/ufs/truncate.c                     |   18 +---
 fs/ufs/util.c                         |   20 ++---
 fs/ufs/util.h                         |    3 +-
 include/linux/buffer_head.h           |    4 +-
 include/linux/fs.h                    |   21 ++---
 include/linux/fs_struct.h             |   14 ++--
 include/linux/lglock.h                |  172 ++++++++++++++++++++++++++++++++
 include/linux/tty.h                   |    9 ++
 kernel/fork.c                         |   10 +-
 security/apparmor/path.c              |    9 +--
 security/selinux/hooks.c              |    9 +-
 43 files changed, 800 insertions(+), 453 deletions(-)

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

* Re: [git pull] vfs for rc2, part 1
  2010-08-18 15:35 [git pull] vfs for rc2, part 1 Al Viro
@ 2010-08-18 16:44 ` Linus Torvalds
  2010-08-18 16:52   ` Christoph Hellwig
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Torvalds @ 2010-08-18 16:44 UTC (permalink / raw)
  To: Al Viro, Jan Kara; +Cc: linux-kernel, linux-fsdevel

On Wed, Aug 18, 2010 at 8:35 AM, Al Viro <viro@zeniv.linux.org.uk> wrote:
>
> Jan Kara (1):
>      vfs: update ctime when changing the file's permission by setfacl

What dirties the inode for this case? It seems to just set i_ctime
directly, how does it actually get written back to disk?

Or is this purely a tmpfs/shmfs issue? Maybe a comment on that would
have been good.

Anyway, pulled. I may not get all the patches from Nick I want, but at
least I got some..

                          Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [git pull] vfs for rc2, part 1
  2010-08-18 16:44 ` Linus Torvalds
@ 2010-08-18 16:52   ` Christoph Hellwig
  0 siblings, 0 replies; 3+ messages in thread
From: Christoph Hellwig @ 2010-08-18 16:52 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Al Viro, Jan Kara, linux-kernel, linux-fsdevel

On Wed, Aug 18, 2010 at 09:44:34AM -0700, Linus Torvalds wrote:
> On Wed, Aug 18, 2010 at 8:35 AM, Al Viro <viro@zeniv.linux.org.uk> wrote:
> >
> > Jan Kara (1):
> > ? ? ?vfs: update ctime when changing the file's permission by setfacl
> 
> What dirties the inode for this case? It seems to just set i_ctime
> directly, how does it actually get written back to disk?
> 
> Or is this purely a tmpfs/shmfs issue? Maybe a comment on that would
> have been good.

Yes, that code currently is just used for in-memory filesystems. Both
the generic_acl name for the file and the vfs: prefix for the patch
are rather confusing.


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

end of thread, other threads:[~2010-08-18 16:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-18 15:35 [git pull] vfs for rc2, part 1 Al Viro
2010-08-18 16:44 ` Linus Torvalds
2010-08-18 16:52   ` Christoph Hellwig

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