From owner-freebsd-mobile Wed Dec 17 14:32:24 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA21196 for mobile-outgoing; Wed, 17 Dec 1997 14:32:24 -0800 (PST) (envelope-from owner-freebsd-mobile) Received: from word.smith.net.au (ppp9.portal.net.au [202.12.71.109]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id OAA21181 for ; Wed, 17 Dec 1997 14:32:14 -0800 (PST) (envelope-from mike@word.smith.net.au) Received: from word (localhost [127.0.0.1]) by word.smith.net.au (8.8.8/8.8.5) with ESMTP id IAA01669; Thu, 18 Dec 1997 08:56:24 +1030 (CST) Message-Id: <199712172226.IAA01669@word.smith.net.au> X-Mailer: exmh version 2.0zeta 7/24/97 To: "Glenn Lee Dicus" cc: "Nate Williams" , "Mobile FreeBSD" Subject: Re: pcic.c <-> pcicx.c? In-reply-to: Your message of "Wed, 17 Dec 1997 21:18:27 -0800." <199712172032.MAA06243@mail.nomadix.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Dec 1997 08:56:23 +1030 From: Mike Smith Sender: owner-freebsd-mobile@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > More specifically, where are "pcic_memory()" and "crdioctl()" being called > from? Might I suggest you investigate global(1)? Failing that, how about find /sys -name "*.c" | xargs grep pcic_memory You'll probably find that crdioctl() is parked in the linker set for the 'crd' device; it is almost certainly its ioctl() handler, and is thus invoked when a user-space program makes an ioctl call on a /dev/crd* node. mike