From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S272502AbTHEPWl (ORCPT ); Tue, 5 Aug 2003 11:22:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S272503AbTHEPWl (ORCPT ); Tue, 5 Aug 2003 11:22:41 -0400 Received: from out001pub.verizon.net ([206.46.170.140]:27344 "EHLO out001.verizon.net") by vger.kernel.org with ESMTP id S272502AbTHEPWi (ORCPT ); Tue, 5 Aug 2003 11:22:38 -0400 From: Gene Heskett Reply-To: gene.heskett@verizon.net Organization: None that appears to be detectable by casual observers To: "Randy.Dunlap" Subject: Re: 2.4 vs 2.6 versions of include/linux/ioport.h Date: Tue, 5 Aug 2003 11:22:35 -0400 User-Agent: KMail/1.5.1 Cc: linux-kernel@vger.kernel.org References: <200308051041.08078.gene.heskett@verizon.net> <20030805075758.31f51879.rddunlap@osdl.org> In-Reply-To: <20030805075758.31f51879.rddunlap@osdl.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200308051122.35712.gene.heskett@verizon.net> X-Authentication-Info: Submitted using SMTP AUTH at out001.verizon.net from [151.205.9.38] at Tue, 5 Aug 2003 10:22:37 -0500 Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday 05 August 2003 10:57, Randy.Dunlap wrote: >On Tue, 5 Aug 2003 10:41:08 -0400 Gene Heskett wrote: >| Greetings; >| >| In the 2.4 includes, find this in ioport.h >| ---- >| /* Compatibility cruft */ >| #define check_region(start,n) __check_region(&ioport_resource, >| (start), (n)) >| [snip] >| extern int __check_region(struct resource *, unsigned long, >| unsigned long); >| ---- >| But in the 2.6 version, find this: >| ---- >| /* Compatibility cruft */ >| [snip] >| extern int __check_region(struct resource *, unsigned long, >| unsigned long); >| [snip] >| static inline int __deprecated check_region(unsigned long s, >| unsigned long n) >| { >| return __check_region(&ioport_resource, s, n); >| } >| ---- >| First, the define itself is missing in the 2.6 version. >| >| Many drivers seem to use this call, and in that which I'm trying >| to build, the nforce and advansys modules use it. And while the >| modules seem to build, they do not run properly. >| >| I cannot run 2.6.x for extended tests because of the advansys >| breakage this causes. I also haven't even tried to run X because >| of the nforce error reported when its built, the same error as >| attacks the advansys code. >| >| Can I ask why this change was made, and is there a suitable >| replacement call available that these drivers could use instead of >| check_region(), as shown here in a snip from advansys.c? >| ---- >| if (check_region(iop, ASC_IOADR_GAP) != 0) { >| ... >| if (check_region(iop_base, ASC_IOADR_GAP) != 0) { >| ... >| >| Hopeing for some hints here. > >check_region() was racy. Use request_region() instead. > > if (!request_region(iop, ASC_IOADR_GAP, "advansys")) { > ... > > if (!request_region(iop_base, ASC_IOADR, "advansys")) { > ... > >Of course, if successful, this assigns the region to the driver, >while check_region() didn't do this, so release_region() should be >used as needed to return the resources. Oops... I have a test compile going that changed those to check_mem_region. And while I didn't change the i2c stuff, which still reports the error, advansys.o built w/o error this time. Ok, so I can change that to !request_region, but I have NDI when to go about releasing it, if ever, for a kernel driver thats either there, and the hardware is used, or not because the hardware isn't present. It seems to me that if its allocated to this driver, and capable of being re-used at anytime, then the allocation should, once made, stand. Or is my view of the world skewed and it should be done at the bottom of whatever conditional is involved? Inquiring minds want to know. I guess it all depends on what happens if the call is repeated. Will it assign a new buffer each time?, thereby causeing a memory leak, or will it find its been done once and return success anyway? Thanks very much for the quick response. >-- >~Randy -- Cheers, Gene AMD K6-III@500mhz 320M Athlon1600XP@1400mhz 512M 99.27% setiathome rank, not too shabby for a WV hillbilly Yahoo.com attornies please note, additions to this message by Gene Heskett are: Copyright 2003 by Maurice Eugene Heskett, all rights reserved.