From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Zijlstra Subject: Re: [PATCH] pid: change task_struct::pid to read-only Date: Fri, 20 Dec 2013 22:33:48 +0100 Message-ID: <20131220213348.GE7959@laptop.programming.kicks-ass.net> References: <8aa73d2b884439496f87d5f34c12ba9b4b40f7e5.1377032086.git.rgb@redhat.com> <20131217153611.GA18321@redhat.com> <20131217154004.GA21656@redhat.com> <20131220190157.GA1452@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20131220190157.GA1452@redhat.com> Sender: linux-kernel-owner@vger.kernel.org To: Oleg Nesterov Cc: Richard Guy Briggs , linux-audit@redhat.com, linux-kernel@vger.kernel.org, Eric Paris List-Id: linux-audit@redhat.com On Fri, Dec 20, 2013 at 08:01:57PM +0100, Oleg Nesterov wrote: > The only problem is that > > #define ASSIGN_CONST(l, r) (*(typeof(r) *)&(l) = (r)) > > obviously can't work in this case ;) We need something more clever. Hmm indeed, C++ has both the const_cast<>() thingy and the template system is powerful enough to actually implement const_cast<>() inside the language. But I cannot find anything useful for C. Your attempt to use the rvalue type to hopefully obtain a const-less lvalue type is clever, but does indeed fail where the rvalue is const too.