From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1030753AbcCQMvv (ORCPT ); Thu, 17 Mar 2016 08:51:51 -0400 Received: from mx6-phx2.redhat.com ([209.132.183.39]:52557 "EHLO mx6-phx2.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1030425AbcCQMvs (ORCPT ); Thu, 17 Mar 2016 08:51:48 -0400 Date: Thu, 17 Mar 2016 08:51:46 -0400 (EDT) From: Bob Peterson To: torvalds@linux-foundation.org Cc: cluster-devel , linux-kernel@vger.kernel.org Message-ID: <454051961.39163640.1458219106285.JavaMail.zimbra@redhat.com> In-Reply-To: <2094757318.39162844.1458219077321.JavaMail.zimbra@redhat.com> Subject: GFS2: Pull request (merge window) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Originating-IP: [10.3.113.20] X-Mailer: Zimbra 8.0.6_GA_5922 (ZimbraWebClient - FF45 (Linux)/8.0.6_GA_5922) Thread-Topic: GFS2: Pull request (merge window) Thread-Index: 8nQqkzuX9qE1EV4y6hxymdXUfnWEjQ== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, Please consider pulling the following changes for the GFS2 file system. Bob Peterson ---------------------------------------------------------------- The following changes since commit 67990608c8b95d2b8ccc29932376ae73d5818727: Merge tag 'pm+acpi-4.5-rc1-1' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm (2016-01-12 20:25:09 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git tags/gfs2-merge-window for you to fetch changes up to 73b462d2808d7cbca4d7886cf6aaed850640e6cd: GFS2: Eliminate parameter non_block on gfs2_inode_lookup (2016-03-15 10:46:50 -0400) ---------------------------------------------------------------- GFS2: merge window We only have six patches ready for this merge window. - Arnd Bergmann contributed a patch that fixes an uninitialized variable warning. - The second patch avoids a kernel panic due to referencing an iopen glock that may not be held, in an error path. - The third patch fixes a rounding error that caused xfs_tests direct IO write "fsx" tests to fail on GFS2. - The fourth patch tidies up the code path when glocks are being reused to recreate a dinode that was recently deleted. - The fifth reverts an ages-old patch that should no longer be needed, and which interfered with the transition of dinodes from unlinked to free. - And lastly, a patch to eliminate a function parameter that's not needed. ---------------------------------------------------------------- Arnd Bergmann (1): gfs2: avoid uninitialized variable warning Bob Peterson (5): GFS2: Check if iopen is held when deleting inode GFS2: Fix direct IO write rounding error GFS2: Prevent delete work from occurring on glocks used for create GFS2: Don't filter out I_FREEING inodes anymore GFS2: Eliminate parameter non_block on gfs2_inode_lookup fs/gfs2/aops.c | 2 +- fs/gfs2/dir.c | 6 ++--- fs/gfs2/export.c | 2 +- fs/gfs2/glock.c | 10 +++++++- fs/gfs2/incore.h | 1 + fs/gfs2/inode.c | 71 +++++++++------------------------------------------- fs/gfs2/inode.h | 5 ++-- fs/gfs2/ops_fstype.c | 2 +- fs/gfs2/super.c | 26 +++++++++++-------- 9 files changed, 46 insertions(+), 79 deletions(-)