From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753005AbbEHSMm (ORCPT ); Fri, 8 May 2015 14:12:42 -0400 Received: from mx0a-00082601.pphosted.com ([67.231.145.42]:57885 "EHLO mx0a-00082601.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752214AbbEHSMj (ORCPT ); Fri, 8 May 2015 14:12:39 -0400 Date: Fri, 8 May 2015 12:12:35 -0600 From: Jens Axboe To: CC: Subject: [GIT PULL] Block fixes for 4.1-rc Message-ID: <20150508181235.GA29072@kernel.dk> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Disposition: inline X-Originating-IP: [192.168.54.13] X-Proofpoint-Spam-Reason: safe X-FB-Internal: Safe X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:5.14.151,1.0.33,0.0.0000 definitions=2015-05-08_07:2015-05-08,2015-05-08,1970-01-01 signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Linus, A collection of fixes since the merge window. This pull request contains: - Fix for a double elevator module release, from Chao Yu. Ancient bug. - The splice() MORE flag fix from Christophe Leroy. - A fix for NVMe, fixing a patch that went in in the merge window. From Keith. - Two fixes for blk-mq CPU hotplug handling, from Ming Lei. - bdi vs blockdev lifetime fix from Neil Brown, fixing and oops in md. - Two blk-mq fixes from Shaohua, fixing a race on queue stop and a bad merge issue with FUA writes. - Division-by-zero fix for writeback from Tejun. - A block bounce page accounting fix, making sure we inc/dec after bouncing so that pre/post IO pages match up. From Wang YanQing. Please pull! git://git.kernel.dk/linux-block.git for-linus ---------------------------------------------------------------- Chao Yu (1): elevator: fix double release of elevator module Christophe Leroy (1): splice: sendfile() at once fails for big files Keith Busch (1): NVMe: Fix VPD B0 max sectors translation Ming Lei (2): blk-mq: fix race between timeout and CPU hotplug blk-mq: fix CPU hotplug handling NeilBrown (1): block: destroy bdi before blockdev is unregistered. Shaohua Li (2): blk-mq: fix FUA request hang blk-mq: don't lose requests if a stopped queue restarts Tejun Heo (1): writeback: use |1 instead of +1 to protect against div by zero Wang YanQing (1): block:bounce: fix call inc_|dec_zone_page_state on different pages confuse value of NR_BOUNCE block/blk-core.c | 2 ++ block/blk-mq.c | 60 ++++++++++++++++++++++++++++------------------- block/blk-sysfs.c | 2 -- block/bounce.c | 2 +- block/elevator.c | 6 +---- drivers/block/loop.c | 2 +- drivers/block/nvme-scsi.c | 3 ++- drivers/md/md.c | 4 ++-- fs/splice.c | 12 +++++++++- include/linux/blk_types.h | 2 +- mm/page-writeback.c | 6 ++--- 11 files changed, 60 insertions(+), 41 deletions(-) -- Jens Axboe