From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luc Van Oostenryck Subject: Re: detecting misuse of of_get_property Date: Tue, 29 Oct 2019 12:47:50 +0100 Message-ID: <20191029114750.a7inago2vd2o4lzl@ltop.local> References: <20191029104917.GI1944@kadam> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <20191029104917.GI1944@kadam> Sender: linux-kernel-owner@vger.kernel.org To: Dan Carpenter Cc: Rasmus Villemoes , Dan Carpenter , linux-sparse@vger.kernel.org, LKML List-Id: linux-sparse@vger.kernel.org On Tue, Oct 29, 2019 at 01:50:58PM +0300, Dan Carpenter wrote: > +static void match_of_get_property(const char *fn, struct expression *expr, void *unused) > +{ > + struct expression *left = expr->left; > + struct symbol *type; > + > + type = get_type(left); > + if (!type || type->type != SYM_PTR) > + return; > + type = get_base_type(type); > + if (type_bits(type) == 8) > + return; > + if (type->type == SYM_RESTRICT) > + return; Wouldn't this also silently accept assignments to any bitwise type: __le32, __be16, ... ? -- Luc