From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:40732 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727367AbeH3Cz6 (ORCPT ); Wed, 29 Aug 2018 22:55:58 -0400 Date: Wed, 29 Aug 2018 15:56:48 -0700 From: Andrew Morton To: Greg KH Cc: Randy Dunlap , LKML , David Howells , James Morris , "Serge E. Hallyn" , keyrings@vger.kernel.org, linux-security-module@vger.kernel.org, Mat Martineau , stable Subject: Re: [PATCH resend] uapi/linux/keyctl.h: don't use C++ reserved keyword as a struct member name Message-Id: <20180829155648.e4ec141bf7c66b3f13433ffa@linux-foundation.org> In-Reply-To: <20180829024224.GA6083@kroah.com> References: <0db6c314-1ef4-9bfa-1baa-7214dd2ee061@infradead.org> <20180829024224.GA6083@kroah.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: stable-owner@vger.kernel.org List-ID: On Tue, 28 Aug 2018 19:42:24 -0700 Greg KH wrote: > > --- lnx-416.orig/include/uapi/linux/keyctl.h > > +++ lnx-416/include/uapi/linux/keyctl.h > > @@ -65,7 +65,7 @@ > > > > /* keyctl structures */ > > struct keyctl_dh_params { > > - __s32 private; > > + __s32 dh_private; > > Ick ick ick, why not just put the C "namespace" on all uapi files if you > are including them from c++ code? I'm sure this isn't the only problem > that has this problem, right? > > This is valid C, no need to start worrying about C++ reserved names. We've done this before and it's a simple enough change in order to be friendly toward others. That being said, it's been like this for two years so presumably anyone who is using this header from C++ is already `extern "C" { ...}' around their #include. I'm OK with the patch as-is, but if we run into this issue more often, we might want to look at doing something kernel-wide. I'm not sure what though. Adding #ifdef __cplusplus extern "C" { #endif ... #ifdef __cplusplus } #endif into every uapi file might work. Unpleasing.