From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 20 Feb 2017 19:15:46 +0100 (CET) Received: from vmicros1.altlinux.org ([194.107.17.57]:49488 "EHLO vmicros1.altlinux.org" rhost-flags-OK-OK-OK-OK) by eddie.linux-mips.org with ESMTP id S23993201AbdBTSPjoasHC (ORCPT ); Mon, 20 Feb 2017 19:15:39 +0100 Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id E97B272CA6D; Mon, 20 Feb 2017 21:15:33 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id D19237CCAAE; Mon, 20 Feb 2017 21:15:33 +0300 (MSK) Date: Mon, 20 Feb 2017 21:15:33 +0300 From: "Dmitry V. Levin" To: Lauro Ramos Venancio , Aloisio Almeida Jr , Samuel Ortiz , Thomas Gleixner , Ingo Molnar , "H. Peter Anvin" Cc: linux-wireless@vger.kernel.org, x86@kernel.org, linux-mips@linux-mips.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] uapi: fix definition of struct sockaddr_nfc_llcp on x32 and mips n32 Message-ID: <20170220181533.GA11185@altlinux.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 56881 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: ldv@altlinux.org Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips Replace size_t with __kernel_size_t to fix definition of struct sockaddr_nfc_llcp on architectures like x32 and mips n32 where sizeof(size_t) < sizeof(__kernel_size_t). This also fixes the following linux/nfc.h userspace compilation error: /usr/include/linux/nfc.h:279:2: error: unknown type name 'size_t' size_t service_name_len; Cc: stable@vger.kernel.org Signed-off-by: Dmitry V. Levin --- include/uapi/linux/nfc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/uapi/linux/nfc.h b/include/uapi/linux/nfc.h index 399f39f..f8ccc12 100644 --- a/include/uapi/linux/nfc.h +++ b/include/uapi/linux/nfc.h @@ -276,7 +276,7 @@ struct sockaddr_nfc_llcp { __u8 dsap; /* Destination SAP, if known */ __u8 ssap; /* Source SAP to be bound to */ char service_name[NFC_LLCP_MAX_SERVICE_NAME]; /* Service name URI */; - size_t service_name_len; + __kernel_size_t service_name_len; }; /* NFC socket protocols */ -- ldv