Message ID | 20190131180919.2500-4-mcgrof@kernel.org (mailing list archive) |
---|---|
State | Superseded, archived |
Headers | show
Return-Path: <linux-xfs-owner@kernel.org> Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 4CA07922 for <patchwork-linux-xfs@patchwork.kernel.org>; Thu, 31 Jan 2019 18:09:33 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 43C85311AE for <patchwork-linux-xfs@patchwork.kernel.org>; Thu, 31 Jan 2019 18:09:33 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 37461311B6; Thu, 31 Jan 2019 18:09:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id BF8F3311AE for <patchwork-linux-xfs@patchwork.kernel.org>; Thu, 31 Jan 2019 18:09:32 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727365AbfAaSJc (ORCPT <rfc822;patchwork-linux-xfs@patchwork.kernel.org>); Thu, 31 Jan 2019 13:09:32 -0500 Received: from mail.kernel.org ([198.145.29.99]:43310 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727048AbfAaSJc (ORCPT <rfc822;linux-xfs@vger.kernel.org>); Thu, 31 Jan 2019 13:09:32 -0500 Received: from garbanzo.lan (c-73-71-40-85.hsd1.ca.comcast.net [73.71.40.85]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 3B8FE218FC; Thu, 31 Jan 2019 18:09:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1548958171; bh=HKd2WrWHLClyIk6iLyJJwM/5VBh6xM/i1IPz8VUuWug=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=R0y/Zc3NqIHeni7cwi3qQD+BmvARjw/jsP1A4lAgV47b+H52AeQZljbhtRD3h5lrR +U2g82EtpCo6WPK1Xc6yrxjS7e7E3CTavGgw6KhF2fLyYN1IjhLsFTVTtoxsM4p9mf 7qhiLyQc52jIeKKyGYkZBzvk3zNkgaqu2LiWQsws= From: Luis Chamberlain <mcgrof@kernel.org> To: linux-xfs@vger.kernel.org, gregkh@linuxfoundation.org, Alexander.Levin@microsoft.com Cc: amir73il@gmail.com, hch@infradead.org, Christophe JAILLET <christophe.jaillet@wanadoo.fr>, "Darrick J . Wong" <darrick.wong@oracle.com>, Luis Chamberlain <mcgrof@kernel.org> Subject: [PATCH 03/10] xfs: Fix error code in 'xfs_ioc_getbmap()' Date: Thu, 31 Jan 2019 10:09:12 -0800 Message-Id: <20190131180919.2500-4-mcgrof@kernel.org> X-Mailer: git-send-email 2.18.0 In-Reply-To: <20190131180919.2500-1-mcgrof@kernel.org> References: <20190131180919.2500-1-mcgrof@kernel.org> Sender: linux-xfs-owner@vger.kernel.org Precedence: bulk List-ID: <linux-xfs.vger.kernel.org> X-Mailing-List: linux-xfs@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP |
Series |
xfs: stable fixes for v4.19.y
|
expand
|
diff --git a/fs/xfs/xfs_ioctl.c b/fs/xfs/xfs_ioctl.c index 0ef5ece5634c..bad90479ade2 100644 --- a/fs/xfs/xfs_ioctl.c +++ b/fs/xfs/xfs_ioctl.c @@ -1616,7 +1616,7 @@ xfs_ioc_getbmap( error = 0; out_free_buf: kmem_free(buf); - return 0; + return error; } struct getfsmap_info {