From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from de01egw02.freescale.net (de01egw02.freescale.net [192.88.165.103]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "de01egw02.freescale.net", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id 84B96DDEAB for ; Thu, 5 Apr 2007 04:24:23 +1000 (EST) Message-ID: <4613ED4F.2030203@freescale.com> Date: Wed, 04 Apr 2007 13:24:15 -0500 From: Scott Wood MIME-Version: 1.0 To: Timur Tabi Subject: Re: [PATCH] powerpc: change rheap functions to use long integers instead of pointers References: <11756161753280-git-send-email-timur@freescale.com> <4613E39A.70606@freescale.com> <4613E7CC.1020001@246tNt.com> <20070404181351.GA19855@ld0162-tx32.am.freescale.net> <4613EC2F.80109@freescale.com> In-Reply-To: <4613EC2F.80109@freescale.com> Content-Type: text/plain; charset=us-ascii; format=flowed Cc: linuxppc-dev@ozlabs.org, Sylvain Munaut List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Timur Tabi wrote: > Scott's right. rh_attach_region() never supported anything above > "(unsigned long) -MAXERR". Perhaps I should add a check for that? > > /* Round start up */ > s = (s + m) & ~m; > > + if (IS_ERR_VALUE(s)) > + return -EINVAL; > > /* Round end down */ > e = e & ~m; > > The same patch should be applied to rh_detach_region() and > rh_alloc_fixed(). You should check "e" instead, and make sure that s < e. -Scott