From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933478AbcE3P3M (ORCPT ); Mon, 30 May 2016 11:29:12 -0400 Received: from vmicros1.altlinux.org ([194.107.17.57]:33986 "EHLO micros1.altlinux.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S932508AbcE3P3L (ORCPT ); Mon, 30 May 2016 11:29:11 -0400 Date: Mon, 30 May 2016 18:29:07 +0300 From: "Dmitry V. Levin" To: Anand Jain , Chris Mason Cc: David Sterba , Jeff Mahoney , linux-kernel@vger.kernel.org Subject: [PATCH] uapi: use __u64 instead of u64 Message-ID: <20160530152907.GA4921@altlinux.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org This bug was found by strace test suite. Fixes: 6b526ed70cf1 ("btrfs: introduce device delete by devid") Signed-off-by: Dmitry V. Levin --- include/uapi/linux/btrfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/btrfs.h b/include/uapi/linux/btrfs.h index 23c6960..2bdd1e3 100644 --- a/include/uapi/linux/btrfs.h +++ b/include/uapi/linux/btrfs.h @@ -118,7 +118,7 @@ struct btrfs_ioctl_vol_args_v2 { }; union { char name[BTRFS_SUBVOL_NAME_MAX + 1]; - u64 devid; + __u64 devid; }; }; -- ldv