From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755546AbaDVTq2 (ORCPT ); Tue, 22 Apr 2014 15:46:28 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:48909 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751970AbaDVTq1 (ORCPT ); Tue, 22 Apr 2014 15:46:27 -0400 Date: Tue, 22 Apr 2014 12:46:24 -0700 From: Andrew Morton To: Lai Jiangshan , , Tejun Heo , Jean Delvare , Monam Agarwal , Jeff Layton , Andreas Gruenbacher , Stephen Hemminger Subject: Re: [PATCH 1/4] idr: proper invalid argument handling Message-Id: <20140422124624.6297f6fddffd0110e2b12700@linux-foundation.org> In-Reply-To: <20140422121656.14d5e5534ae4888119787471@linux-foundation.org> References: <1398161781-12105-1-git-send-email-laijs@cn.fujitsu.com> <1398161781-12105-2-git-send-email-laijs@cn.fujitsu.com> <20140422121656.14d5e5534ae4888119787471@linux-foundation.org> X-Mailer: Sylpheed 3.2.0beta5 (GTK+ 2.24.10; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, 22 Apr 2014 12:16:56 -0700 Andrew Morton wrote: > On Tue, 22 Apr 2014 18:16:18 +0800 Lai Jiangshan wrote: > > > When the arguments passed by the caller are invalid, WARN_ON_ONCE() > > is proper than BUG_ON() which may crash the kernel. > > > > ida_remove()/idr_remove() add checks for "id < 0". > > BUG_ON() in ida_simple_remove() is simply removed, due to > > ida_remove() already checks for "id < 0". > > > > In idr_alloc(), it still returns -ENOSPC when "start == end", > > but it returns -EINVAL when "max < start" while old code returns > > -ENOSPC. -EINVAL is proper here, the caller must passed wrong > > arguments. > > > > ida_simple_get()'s argument-checks are changed as the same as > > idr_alloc(). > > This patch doesn't apply. > > > @@ -551,10 +553,7 @@ void idr_remove(struct idr *idp, int id) > > struct idr_layer *p; > > struct idr_layer *to_free; > > > > - if (id < 0) > > - return; > > - > > - if (id > idr_max(idp->layers)) { > > + if (id < 0 || id > idr_max(idp->layers)) { > > idr_remove_warning(id); > > return; > > } > > 3.15-rc2's idr_remove() has a call to sub_remove() in there, but > whatever-kernel-you're-using does not. Ah, it's based on your other idr patchset. That's what I get for working in reverse time order.