lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Mon, 21 Mar 2011 16:14:21 -0500
From:	Alex Elder <aelder@....com>
To:	torvalds@...ux-foundation.org
Cc:	linux-kernel@...r.kernel.org, xfs@....sgi.com,
	akpm@...ux-foundation.org
Subject: [GIT PULL] XFS update for 2.6.39-rc1

The following changes since commit 10effcb548c170d59ea1d2152f2ee0ad45ce4c9d:

  Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs-2.6 (2011-03-21 10:06:51 -0700)

are available in the git repository at:

  git://oss.sgi.com/xfs/xfs for-linus

Alex Elder (2):
      xfs: zero proper structure size for geometry calls
      xfs: don't name variables "panic"

Christoph Hellwig (8):
      xfs: only lock the rt bitmap inode once per allocation
      xfs: fix xfs_get_extsz_hint for a zero extent size hint
      xfs: add lockdep annotations for the rt inodes
      xfs: stop using xfs_trans_iget in the RT allocator
      xfs: more sensible inode refcounting for ialloc
      xfs: enable delaylog by default
      xfs: clean up the xfs_alloc_compute_aligned calling convention
      xfs: factor agf counter updates into a helper

Dan Rosenberg (1):
      xfs: prevent leaking uninitialized stack memory in FSGEOMETRY_V1

Dave Chinner (11):
      xfs: introduce new logging API.
      xfs: Convert linux-2.6/ files to new logging interface
      xfs: Convert xlog_warn to new logging interface
      xfs: convert xfs_cmn_err to xfs_alert_tag
      xfs: kill xfs_fs_repair_cmn_err() macro
      xfs: kill xfs_fs_mount_cmn_err() macro
      xfs: convert xfs_fs_cmn_err to new error logging API
      xfs: rename xfs_cmn_err_fsblock_zero()
      xfs: convert the quota debug prints to new API
      xfs: Convert remaining cmn_err() callers to new API
      xfs: kill support/debug.[ch]

Lukas Czerner (1):
      xfs: check if device support discard in xfs_ioc_trim()

 .../filesystems/xfs-delayed-logging-design.txt     |    7 -
 fs/xfs/Makefile                                    |    5 +-
 fs/xfs/linux-2.6/kmem.c                            |    9 +-
 fs/xfs/linux-2.6/xfs_aops.c                        |    6 +-
 fs/xfs/linux-2.6/xfs_buf.c                         |   17 +-
 fs/xfs/linux-2.6/xfs_discard.c                     |    2 +
 fs/xfs/linux-2.6/xfs_ioctl.c                       |   11 +-
 fs/xfs/linux-2.6/xfs_linux.h                       |   23 ++-
 fs/xfs/linux-2.6/xfs_message.c                     |  133 ++++++++++++
 fs/xfs/linux-2.6/xfs_message.h                     |   38 ++++
 fs/xfs/linux-2.6/xfs_super.c                       |  128 +++++------
 fs/xfs/linux-2.6/xfs_sync.c                        |    5 +-
 fs/xfs/linux-2.6/xfs_sysctl.c                      |    2 +-
 fs/xfs/quota/xfs_dquot.c                           |   48 +++--
 fs/xfs/quota/xfs_dquot_item.c                      |    5 +-
 fs/xfs/quota/xfs_qm.c                              |   49 ++---
 fs/xfs/quota/xfs_qm_bhv.c                          |    3 +-
 fs/xfs/quota/xfs_qm_syscalls.c                     |   85 ++++----
 fs/xfs/quota/xfs_trans_dquot.c                     |    5 +-
 fs/xfs/support/debug.c                             |  107 ----------
 fs/xfs/support/debug.h                             |   61 ------
 fs/xfs/xfs_alloc.c                                 |  160 +++++++-------
 fs/xfs/xfs_bmap.c                                  |   24 ++-
 fs/xfs/xfs_buf_item.c                              |   15 +-
 fs/xfs/xfs_da_btree.c                              |    9 +-
 fs/xfs/xfs_dfrag.c                                 |    4 +-
 fs/xfs/xfs_dir2.c                                  |    2 +-
 fs/xfs/xfs_dir2_node.c                             |   25 +--
 fs/xfs/xfs_error.c                                 |   22 +-
 fs/xfs/xfs_error.h                                 |   19 +--
 fs/xfs/xfs_fsops.c                                 |    9 +-
 fs/xfs/xfs_ialloc.c                                |   82 +++-----
 fs/xfs/xfs_inode.c                                 |  129 +++++------
 fs/xfs/xfs_inode.h                                 |   23 ++-
 fs/xfs/xfs_iomap.c                                 |   12 +-
 fs/xfs/xfs_log.c                                   |  124 +++++------
 fs/xfs/xfs_log_priv.h                              |    4 -
 fs/xfs/xfs_log_recover.c                           |  223 ++++++++++----------
 fs/xfs/xfs_mount.c                                 |  148 +++++++-------
 fs/xfs/xfs_quota.h                                 |    3 +-
 fs/xfs/xfs_rtalloc.c                               |   92 ++++-----
 fs/xfs/xfs_rtalloc.h                               |    2 +-
 fs/xfs/xfs_rw.c                                    |   58 ++---
 fs/xfs/xfs_trans.h                                 |    2 -
 fs/xfs/xfs_trans_ail.c                             |    2 +-
 fs/xfs/xfs_trans_buf.c                             |    6 +-
 fs/xfs/xfs_trans_inode.c                           |   22 --
 fs/xfs/xfs_vnodeops.c                              |   74 ++-----
 48 files changed, 961 insertions(+), 1083 deletions(-)
 create mode 100644 fs/xfs/linux-2.6/xfs_message.c
 create mode 100644 fs/xfs/linux-2.6/xfs_message.h
 delete mode 100644 fs/xfs/support/debug.c
 delete mode 100644 fs/xfs/support/debug.h
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ