Home | History | Annotate | Download | only in dev
History log of /src/sys/arch/sun3/dev/xy.c
RevisionDateAuthorComments
 1.84  21-Dec-2024  tsutsui Make local dev_type_*() functions static.
 1.83  20-Dec-2024  tsutsui Remove trailing whitespace.
 1.82  07-Aug-2021  thorpej branches: 1.82.12;
Merge thorpej-cfargs2.
 1.81  24-Apr-2021  thorpej branches: 1.81.8;
Merge thorpej-cfargs branch:

Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.

Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)

Remove unnecessary or redundant interface attributes where they're not
needed.

There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)

...and a sentinel value CFARG_EOL.

Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.

Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
 1.80  21-Nov-2020  thorpej branches: 1.80.2;
malloc(9) -> kmem(9)
 1.79  10-Nov-2019  chs branches: 1.79.8;
in many device attach paths, allocate memory with M_WAITOK instead of M_NOWAIT
and remove code to handle failures that can no longer happen.
 1.78  26-Apr-2015  mlelstv branches: 1.78.18;
Use C99-style initializers for struct dkdriver.
 1.77  31-Dec-2014  christos make more drivers use disk_ioctl, and add a dev parameter to it so that
we can merge the "easy" disklabel ioctls to it. Ultimately all this will
go do dk_ioctl once all the drivers have been converted.
 1.76  25-Jul-2014  dholland branches: 1.76.4;
Add d_discard to all struct cdevsw instances I could find.

All have been set to "nodiscard"; some should get a real implementation.
 1.75  25-Jul-2014  dholland Add d_discard to all struct bdevsw instances I could find.

I've set them all to nodiscard. Some of them (wd, dk, vnd, ld,
raidframe, maybe cgd) should be implemented for real.
 1.74  16-Mar-2014  dholland branches: 1.74.2;
Change (mostly mechanically) every cdevsw/bdevsw I can find to use
designated initializers.

I have not built every extant kernel so I have probably broken at
least one build; however I've also found and fixed some wrong
cdevsw/bdevsw entries so even if so I think we come out ahead.
 1.73  07-Nov-2013  christos fix unused warnings
 1.72  01-Feb-2011  chuck branches: 1.72.4; 1.72.14; 1.72.18;
udpate license clauses on my code to match the new-style BSD licenses.
remove no-longer-valid wustl email address for me.
based on diff that rmind@ sent me.

no functional change with this commit.
 1.71  13-Jan-2009  yamt branches: 1.71.6; 1.71.8; 1.71.10;
g/c BUFQ_FOO() macros and use bufq_foo() directly.
 1.70  12-Jan-2009  cegger cast to char to printf DISKPART
XXX Shouldn't sun3 use the MI drivers instead?
 1.69  28-Jun-2008  tsutsui branches: 1.69.4;
Split softc/device_t, with misc cosmetic changes.
 1.68  08-Jun-2008  tsutsui branches: 1.68.2;
Use device_private() and device_lookup_private() to get softc
and to see if device unit is vaild.
 1.67  06-Feb-2008  elad branches: 1.67.6; 1.67.8; 1.67.10; 1.67.12;
It's KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_*.

Noted by dogcow@, thanks!
 1.66  06-Feb-2008  elad - There is no XYCMD_WRP -- forgot to remove it along with the XYCMD_RDP :)
- Add missing '}'

Noted by dogcow@, thanks!
 1.65  04-Feb-2008  elad Properly classify kauth PASSTHRU requests.

Done with much help from chuck@, thanks!
 1.64  02-Jan-2008  ad Merge vmlocking2 to head.
 1.63  17-Oct-2007  garbled branches: 1.63.2; 1.63.4; 1.63.8;
Merge the ppcoea-renovation branch to HEAD.

This branch was a major cleanup and rototill of many of the various OEA
cpu based PPC ports that focused on sharing as much code as possible
between the various ports to eliminate near-identical copies of files in
every tree. Additionally there is a new PIC system that unifies the
interface to interrupt code for all different OEA ppc arches. The work
for this branch was done by a variety of people, too long to list here.

TODO:
bebox still needs work to complete the transition to -renovation.
ofppc still needs a bunch of work, which I will be looking at.
ev64260 still needs to be renovated
amigappc was not attempted.

NOTES:
pmppc was removed as an arch, and moved to a evbppc target.
 1.62  08-Oct-2007  ad Merge disk init changes from the vmlocking branch. These seperate init /
destroy of 'struct disk' from attach / detach.
 1.61  29-Jul-2007  ad branches: 1.61.4; 1.61.6; 1.61.8;
It's not a good idea for device drivers to modify b_flags, as they don't
need to understand the locking around that field. Instead of setting
B_ERROR, set b_error instead. b_error is 'owned' by whoever completes
the I/O request.
 1.60  09-Jul-2007  ad branches: 1.60.2; 1.60.4;
Merge some of the less invasive changes from the vmlocking branch:

- kthread, callout, devsw API changes
- select()/poll() improvements
- miscellaneous MT safety improvements
 1.59  04-Mar-2007  christos branches: 1.59.2; 1.59.4; 1.59.10;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.58  04-Jan-2007  elad branches: 1.58.2;
Consistent usage of KAUTH_GENERIC_ISSUSER.
 1.57  23-Jul-2006  ad branches: 1.57.4;
Use the LWP cached credentials where sane.
 1.56  14-May-2006  elad integrate kauth.
 1.55  29-Mar-2006  tsutsui Use device_unit(parent), not device_parent(parent).
 1.54  28-Mar-2006  thorpej Use device_unit().
 1.53  11-Dec-2005  christos branches: 1.53.4; 1.53.6; 1.53.8; 1.53.10; 1.53.12;
merge ktrace-lwp.
 1.52  15-Oct-2005  yamt - change the way to specify a bufq strategy. (by string rather than by number)
- rather than embedding bufq_state in driver softc,
have a pointer to the former.
- move bufq related functions from kern/subr_disk.c to kern/subr_bufq.c.
- rename method to strategy for consistency.
- move some definitions which don't need to be exposed to the rest of kernel
from sys/bufq.h to sys/bufq_impl.h.
(is it better to move it to kern/ or somewhere?)
- fix some obvious breakage in dev/qbus/ts.c. (not tested)
 1.51  03-Jun-2005  tsutsui branches: 1.51.2;
Constify.
 1.50  22-Jan-2005  chs de-__P, remove register, ansify, b* -> mem*, u_int*_t -> uint*_t.
 1.49  28-Oct-2004  yamt branches: 1.49.4;
move buffer queue related stuffs from buf.h to their own header, bufq.h.
 1.48  29-Sep-2003  wiz available, not avaliable. From miod@openbsd.
 1.47  15-Jul-2003  lukem __KERNEL_RCSID()
 1.46  10-May-2003  thorpej branches: 1.46.2;
Change bounds_check_with_label() to take a pointer to the disk structure,
rather than the label itself. This paves the way for some future changes.
 1.45  02-May-2003  dsl Change return type of readdisklabel() to const char *
I hope I've found all the correct places!
 1.44  01-Jan-2003  thorpej Use aprint_normal() for cfprint routines.
 1.43  01-Nov-2002  mrg implement separate read/write disk statistics:
- disk_unbusy() gets a new parameter to tell the IO direction.
- struct disk_sysctl gets 4 new members for read/write bytes/transfers.
when processing hw.diskstats, add the read&write bytes/transfers for
the old combined stats to attempt to keep backwards compatibility.

unfortunately, due to multiple bugs, this will cause new kernels and old
vmstat/iostat/systat programs to fail. however, the next time this is
change it will not fail again.

this is just the kernel portion.
 1.42  23-Oct-2002  jdolecek merge kqueue branch into -current

kqueue provides a stateful and efficient event notification framework
currently supported events include socket, file, directory, fifo,
pipe, tty and device changes, and monitoring of processes and signals

kqueue is supported by all writable filesystems in NetBSD tree
(with exception of Coda) and all device drivers supporting poll(2)

based on work done by Jonathan Lemon for FreeBSD
initial NetBSD port done by Luke Mewburn and Jason Thorpe
 1.41  02-Oct-2002  thorpej Add trailing ; to CFATTACH_DECL.
 1.40  01-Oct-2002  thorpej Use CFATTACH_DECL().
 1.39  27-Sep-2002  thorpej Declare all cfattach structures const.
 1.38  27-Sep-2002  provos remove trailing \n in panic(). approved perry.
 1.37  06-Sep-2002  gehenna Merge the gehenna-devsw branch into the trunk.

This merge changes the device switch tables from static array to
dynamically generated by config(8).

- All device switches is defined as a constant structure in device drivers.

- The new grammer ``device-major'' is introduced to ``files''.

device-major <prefix> char <num> [block <num>] [<rules>]

- All device major numbers must be listed up in port dependent majors.<arch>
by using this grammer.

- Added the new naming convention.
The name of the device switch must be <prefix>_[bc]devsw for auto-generation
of device switch tables.

- The backward compatibility of loading block/character device
switch by LKM framework is broken. This is necessary to convert
from block/character device major to device name in runtime and vice versa.

- The restriction to assign device major by LKM is completely removed.
We don't need to reserve LKM entries for dynamic loading of device switch.

- In compile time, device major numbers list is packed into the kernel and
the LKM framework will refer it to assign device major number dynamically.
 1.36  23-Jul-2002  hannken Convert to new device buffer queue interface.

Approved by: Nathan J. Williams <nathanw@netbsd.org>
 1.35  05-Sep-2001  tsutsui branches: 1.35.2; 1.35.6; 1.35.14;
bcopy() -> memcpy(), bzero() -> memset()
 1.34  22-Jul-2001  wiz seperate -> separate
 1.33  29-Jun-2000  mrg branches: 1.33.4;
remove include of <vm/vm.h>. <vm/vm.h> -> <uvm/uvm_extern.h>
 1.32  26-Jun-2000  mrg remove/move more mach vm header files:

<vm/pglist.h> -> <uvm/uvm_pglist.h>
<vm/vm_inherit.h> -> <uvm/uvm_inherit.h>
<vm/vm_kern.h> -> into <uvm/uvm_extern.h>
<vm/vm_object.h> -> nothing
<vm/vm_pager.h> -> into <uvm/uvm_pager.h>

also includes a bunch of <vm/vm_page.h> include removals (due to redudancy
with <vm/vm.h>), and a scattering of other similar headers.
 1.31  04-Jun-2000  cgd Implement the more flexiable `evcnt' interface as discussed (briefly) on
tech-kern and now documented in evcnt(9).
 1.30  27-May-2000  thorpej branches: 1.30.2;
sleep() -> tsleep()
 1.29  19-May-2000  thorpej A foolish consistency; most parts of the kernel use bp->b_data, so
change these from bp->b_un.b_addr to bp->b_data, as well. This also
allows us more flexibility to experiment with other data buffer types
hung off of struct buf.
 1.28  16-May-2000  thorpej Nuke dk_establish() from orbit except from those ports which still use
it to determine the boot device: mvme68k, pc532, macppc, ofppc. Those
platforms should be changed to use device_register(). In the mean time,
those ports defined __BROKEN_DK_ESTABLISH.
 1.27  01-Apr-2000  tsutsui Typo. (callout_rest -> callout_reset)
 1.26  23-Mar-2000  thorpej New callout mechanism with two major improvements over the old
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
resource allocation.
- Insertion and removal of callouts is constant time, important as
this facility is used quite a lot in the kernel.

The old timeout()/untimeout() API has been removed from the kernel.
 1.25  07-Feb-2000  thorpej Fix a bug in disksort_*() which caused non-optimal ordering when multiple
active partitions were on a single spindle. Add a b_rawblkno member to
struct buf which contains the non-partition-relative block number to sort
by.
 1.24  21-Jan-2000  thorpej Update for sys/buf.h/disksort_*() changes.
 1.23  17-Sep-1999  thorpej branches: 1.23.2;
Centralize the declaration and clearing of `cold'.
 1.22  23-Jul-1998  gwr Print a complaint when no children were specified
in the config file. Better than a link error...
 1.21  30-Jun-1998  mrg <dev/sun/disklabel.h> not <dev/sun/sun_disklabel.h>
 1.20  24-Jun-1998  jeremy Changed to include sun_disklabel.h from its new location in dev/sun.
 1.19  26-Jan-1998  gwr Save the "bustype" from our attach args in the controller "softc"
and use that instead of hard-coding BUS_VME32 everywhere.
(The Sun3X needs a more specific bustype value.)
 1.18  12-Jan-1998  thorpej branches: 1.18.2;
Update for changes to config.
 1.17  17-Oct-1997  gwr Move initialization code from xxattach to xx_init and call that
from both xxattach and xxopen instead of calling xxattach from
xxopen with faked up autoconfig args. Fix warnings.
 1.16  17-Jul-1997  jtk use locator defines in "locators.h" to index cf_loc[]
 1.15  24-Jun-1997  thorpej foosize()'s return value is in DEV_BSIZE units; adjust the size obtained
from the disklabel accordingly.
 1.14  18-Jun-1997  pk xysize(): only call xyopen()/xyclose() if not already open, per the
current `openmask'.
 1.13  28-Feb-1997  gwr Add xxc_print functions to pass to config_found() instead of NULL.
(Thanks to Chris Demetriou suggesting the improvement.)
 1.12  17-Dec-1996  gwr branches: 1.12.6;
Make this compile with -Werror -Wall -Wstrict-prototypes
(finally! yea!) Also get rid of __BROKEN_INDIRECT_CONFIG
 1.11  13-Oct-1996  christos backout previous kprintf change
 1.10  11-Oct-1996  christos printf -> kprintf, sprintf -> ksprintf
 1.9  17-Mar-1996  thorpej New device attachment scheme:

- split softc size and match/attach out from cfdriver into
a new struct cfattach.

- new "attach" directive for files.*. May specify the name of
the cfattach structure, so that devices may be easily attached
to parents with different autoconfiguration semantics.
 1.8  08-Mar-1996  mycroft Don't call dvma_kvtopa() with a null pointer.
 1.7  04-Mar-1996  chuck Fix two bugs reported by Don Koch <aardvark@poirot.krl.com> (PR#2168).
(the xd bugs also apply to the xy driver...)
[1] check return value from malloc() for NULL before trying to bzero it.
[2] use "=" rather than "|=" when writing to CSR (otherwise you may
ACK something you don't mean to!).
 1.6  28-Feb-1996  thorpej Fixup an RCS id.
 1.5  21-Feb-1996  chuck sync with sparc version:
minor clean up: revise locations of disk_busy/disk_unbusy calls to match xd.c
 1.4  16-Feb-1996  gwr Sync. with sparc version, and fix some cosmetic nits...
 1.3  13-Jan-1996  chuck sync with sparc:
- move disk_attach() to before reading the disk label as per Jason.
otherwise we are reading into an unallocated buffer (oops!)
 1.2  07-Jan-1996  thorpej New generic disk framework. Highlights:

- New metrics handling. Metrics are now kept in the new
`struct disk'. Busy time is now stored as a timeval, and
transfer count in bytes.

- Storage for disklabels is now dynamically allocated, so that
the size of the disk structure is not machine-dependent.

- Several new functions for attaching and detaching disks, and
handling metrics calculation.

Old-style instrumentation is still supported in drivers that did it before.
However, old-style instrumentation is being deprecated, and will go away
once the userland utilities are updated for the new framework.

For usage and architectural details, see the forthcoming disk(9) manual
page.
 1.1  30-Oct-1995  gwr branches: 1.1.2;
New from Chuck Cranor: drivers for SMD disks!
xd: Xylogics 753/7053 SMD disk controller
xy: Xylogics 450/451 SMD disk controller
These now compile, but have not been tested.
 1.1.2.2  30-Oct-1995  gwr New from Chuck Cranor: drivers for SMD disks!
xd: Xylogics 753/7053 SMD disk controller
xy: Xylogics 450/451 SMD disk controller
These now compile, but have not been tested.
 1.1.2.1  30-Oct-1995  gwr file xy.c was added on branch netbsd-1-1 on 1995-10-30 20:58:22 +0000
 1.12.6.1  12-Mar-1997  is Merge in changes from The Trunk
 1.18.2.1  26-Jan-1998  gwr Merge recent changes on the head onto the gwr-3x3 branch.
 1.23.2.1  20-Nov-2000  bouyer Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.
 1.30.2.1  22-Jun-2000  minoura Sync w/ netbsd-1-5-base.
 1.33.4.4  10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.33.4.3  06-Sep-2002  jdolecek sync kqueue branch with HEAD
 1.33.4.2  13-Sep-2001  thorpej Update the kqueue branch to HEAD.
 1.33.4.1  03-Aug-2001  lukem update to -current
 1.35.14.2  31-Aug-2002  gehenna catch up with -current.
 1.35.14.1  17-May-2002  gehenna Add device switch.
 1.35.6.6  03-Jan-2003  thorpej Sync with HEAD.
 1.35.6.5  11-Nov-2002  nathanw Catch up to -current
 1.35.6.4  18-Oct-2002  nathanw Catch up to -current.
 1.35.6.3  17-Sep-2002  nathanw Catch up to -current.
 1.35.6.2  01-Aug-2002  nathanw Catch up to -current.
 1.35.6.1  05-Sep-2001  nathanw file xy.c was added on branch nathanw_sa on 2002-08-01 02:43:55 +0000
 1.35.2.1  10-Oct-2001  fvdl Convert all remaining devices.
 1.46.2.7  10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.46.2.6  04-Feb-2005  skrll Adapt to branch.
 1.46.2.5  24-Jan-2005  skrll Sync with HEAD.
 1.46.2.4  02-Nov-2004  skrll Sync with HEAD.
 1.46.2.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.46.2.2  18-Sep-2004  skrll Sync with HEAD.
 1.46.2.1  03-Aug-2004  skrll Sync with HEAD
 1.49.4.1  29-Apr-2005  kent sync with -current
 1.51.2.7  11-Feb-2008  yamt sync with head.
 1.51.2.6  21-Jan-2008  yamt sync with head
 1.51.2.5  27-Oct-2007  yamt sync with head.
 1.51.2.4  03-Sep-2007  yamt sync with head.
 1.51.2.3  26-Feb-2007  yamt sync with head.
 1.51.2.2  30-Dec-2006  yamt sync with head.
 1.51.2.1  21-Jun-2006  yamt sync with head.
 1.53.12.2  24-May-2006  tron Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
 1.53.12.1  31-Mar-2006  tron Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
 1.53.10.4  13-May-2006  elad sprinkle some #include <sys/kauth.h> in files that use kauth kpi but
don't include it yet. hopefully this will prevent some fallout.
 1.53.10.3  19-Apr-2006  elad sync with head - hopefully this will work
 1.53.10.2  10-Mar-2006  elad generic_authorize() -> kauth_authorize_generic().
 1.53.10.1  08-Mar-2006  elad Adapt to kernel authorization KPI.

I expect *some* lossage here...
 1.53.8.3  11-Aug-2006  yamt sync with head
 1.53.8.2  24-May-2006  yamt sync with head.
 1.53.8.1  01-Apr-2006  yamt sync with head.
 1.53.6.2  01-Jun-2006  kardel Sync with head.
 1.53.6.1  22-Apr-2006  simonb Sync with head.
 1.53.4.1  09-Sep-2006  rpaulo sync with head
 1.57.4.1  12-Jan-2007  ad Sync with head.
 1.58.2.1  12-Mar-2007  rmind Sync with HEAD.
 1.59.10.2  16-Oct-2007  garbled Sync with HEAD
 1.59.10.1  03-Oct-2007  garbled Sync with HEAD
 1.59.4.1  11-Jul-2007  mjf Sync with head.
 1.59.2.3  20-Aug-2007  ad - Alter disk attach/detach to fix a panic when closing a vnd device.
- Sync with HEAD.
 1.59.2.2  19-Aug-2007  ad - Back out the biodone() changes.
- Eliminate B_ERROR (from HEAD).
 1.59.2.1  01-Jul-2007  ad Adapt to callout API change.
 1.60.4.1  15-Aug-2007  skrll Sync with HEAD.
 1.60.2.1  07-Aug-2007  matt Sync with HEAD.
 1.61.8.1  14-Oct-2007  yamt sync with head.
 1.61.6.3  23-Mar-2008  matt sync with HEAD
 1.61.6.2  09-Jan-2008  matt sync with HEAD
 1.61.6.1  06-Nov-2007  matt sync with HEAD
 1.61.4.1  26-Oct-2007  joerg Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
 1.63.8.1  02-Jan-2008  bouyer Sync with HEAD
 1.63.4.1  31-Dec-2007  ad Catch up with buffer cache changes.
 1.63.2.1  18-Feb-2008  mjf Sync with HEAD.
 1.67.12.2  18-Sep-2008  wrstuden Sync with wrstuden-revivesa-base-2.
 1.67.12.1  23-Jun-2008  wrstuden Sync w/ -current. 34 merge conflicts to follow.
 1.67.10.1  04-May-2009  yamt sync with head.
 1.67.8.1  17-Jun-2008  yamt sync with head.
 1.67.6.2  17-Jan-2009  mjf Sync with HEAD.
 1.67.6.1  29-Jun-2008  mjf Sync with HEAD.
 1.68.2.1  03-Jul-2008  simonb Sync with head.
 1.69.4.1  19-Jan-2009  skrll Sync with HEAD.
 1.71.10.1  08-Feb-2011  bouyer Sync with HEAD
 1.71.8.1  06-Jun-2011  jruoho Sync with HEAD.
 1.71.6.1  05-Mar-2011  rmind sync with head
 1.72.18.1  18-May-2014  rmind sync with head
 1.72.14.2  03-Dec-2017  jdolecek update from HEAD
 1.72.14.1  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.72.4.1  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.74.2.1  10-Aug-2014  tls Rebase.
 1.76.4.2  06-Jun-2015  skrll Sync with HEAD
 1.76.4.1  06-Apr-2015  skrll Sync with HEAD
 1.78.18.1  13-Apr-2020  martin Mostly merge changes from HEAD upto 20200411
 1.79.8.1  14-Dec-2020  thorpej Sync w/ HEAD.
 1.80.2.1  21-Mar-2021  thorpej Give config_found() the same variadic arguments treatment as
config_search(). This commit only adds the CFARG_EOL sentinel
to the existing config_found() calls. Conversion of config_found_sm_loc()
and config_found_ia() call sites will be in subsequent commits.
 1.81.8.1  04-Aug-2021  thorpej Adapt to CFARGS().
 1.82.12.1  02-Aug-2025  perseant Sync with HEAD

RSS XML Feed