Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752600AbdGHBJd (ORCPT ); Fri, 7 Jul 2017 21:09:33 -0400 Received: from mail.kernel.org ([198.145.29.99]:37890 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751034AbdGHBJc (ORCPT ); Fri, 7 Jul 2017 21:09:32 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 165FE22BDB Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=shli@kernel.org Date: Fri, 7 Jul 2017 18:09:29 -0700 From: Shaohua Li To: torvalds@linux-foundation.org Cc: linux-kernel@vger.kernel.org, linux-raid@vger.kernel.org, neilb@suse.de Subject: [GIT PULL] MD update for 4.13 Message-ID: <20170708010929.3ztmrjo76wj4rtkh@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2299 Lines: 70 Hi, Please pull MD update for 4.13. This update only includes several bug fixes: - Neil Brown fixes a deadlock in MD suspend and a potential bug in bio allocation. - Mikulas Patocka fixes a signal issue - Guoqing Jiang fixes a typo in FailFast test - Other trival fixes Please note, there is a merge conflict with block tree and causes build error, which could be fixed by this one: diff --git a/drivers/md/md.c b/drivers/md/md.c index c4d41b03324b..8cdca0296749 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -5450,7 +5450,7 @@ int md_run(struct mddev *mddev) return -ENOMEM; } if (mddev->sync_set == NULL) { - mddev->sync_set = bioset_create(BIO_POOL_SIZE, 0); + mddev->sync_set = bioset_create(BIO_POOL_SIZE, 0, BIOSET_NEED_BVECS); if (!mddev->sync_set) return -ENOMEM; } Thanks, Shaohua The following changes since commit 63f700aab4c11d46626de3cd051dae56cf7e9056: Merge tag 'xtensa-20170612' of git://github.com/jcmvbkbc/linux-xtensa (2017-06-13 15:09:10 +0900) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/shli/md.git for-next for you to fetch changes up to 7184ef8bab0cb865c3cea9dd1a675771145df0af: MD: fix sleep in atomic (2017-07-03 14:38:59 -0700) ---------------------------------------------------------------- Guoqing Jiang (2): md/raid10: fix FailFast test for wrong device md/raid1: remove unused bio in sync_request_write Lidong Zhong (1): md: change the initialization value for a spare device spot to MD_DISK_ROLE_SPARE Mikulas Patocka (1): md: don't use flush_signals in userspace processes NeilBrown (2): md: fix deadlock between mddev_suspend() and md_write_start() md: use a separate bio_set for synchronous IO. Shaohua Li (2): MD: fix a null dereference MD: fix sleep in atomic drivers/md/faulty.c | 5 +++-- drivers/md/linear.c | 7 ++++--- drivers/md/md.c | 47 ++++++++++++++++++++++++++++++++++++++--------- drivers/md/md.h | 7 +++++-- drivers/md/multipath.c | 8 ++++---- drivers/md/raid0.c | 7 ++++--- drivers/md/raid1.c | 20 ++++++++++++-------- drivers/md/raid10.c | 16 +++++++++------- drivers/md/raid5.c | 22 +++++++++++++--------- 9 files changed, 92 insertions(+), 47 deletions(-)