History log of /src/sys/arch/acorn32/mainbus/fd.c |
Revision | | Date | Author | Comments |
1.65 |
| 28-Aug-2023 |
andvar | acorn32/fdc(4): fix modifiers blkno values to %lld and fix typos in fr_r10-r12 variables (fh->fr).
Fixes acorn32 build with FD_DEBUG enabled option.
|
1.64 |
| 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
1.63 |
| 24-Apr-2021 |
thorpej | branches: 1.63.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.62 |
| 20-Nov-2020 |
thorpej | branches: 1.62.2; malloc(9) -> kmem(9)
|
1.61 |
| 10-Nov-2019 |
chs | branches: 1.61.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.60 |
| 08-Feb-2019 |
mrg | make *fd*.c's fd_dev_to_type() always a static inline. some have it as a const, and have code to copy the defaults to modify them before using them, but that probably requires a real test to feel confident in changing.
|
1.59 |
| 03-Sep-2018 |
riastradh | Rename min/max -> uimin/uimax for better honesty.
These functions are defined on unsigned int. The generic name min/max should not silently truncate to 32 bits on 64-bit systems. This is purely a name change -- no functional change intended.
HOWEVER! Some subsystems have
#define min(a, b) ((a) < (b) ? (a) : (b)) #define max(a, b) ((a) > (b) ? (a) : (b))
even though our standard name for that is MIN/MAX. Although these may invite multiple evaluation bugs, these do _not_ cause integer truncation.
To avoid `fixing' these cases, I first changed the name in libkern, and then compile-tested every file where min/max occurred in order to confirm that it failed -- and thus confirm that nothing shadowed min/max -- before changing it.
I have left a handful of bootloaders that are too annoying to compile-test, and some dead code:
cobalt ews4800mips hp300 hppa ia64 luna68k vax acorn32/if_ie.c (not included in any kernels) macppc/if_gm.c (superseded by gem(4))
It should be easy to fix the fallout once identified -- this way of doing things fails safe, and the goal here, after all, is to _avoid_ silent integer truncations, not introduce them.
Maybe one day we can reintroduce min/max as type-generic things that never silently truncate. But we should avoid doing that for a while, so that existing code has a chance to be detected by the compiler for conversion to uimin/uimax without changing the semantics until we can properly audit it all. (Who knows, maybe in some cases integer truncation is actually intended!)
|
1.58 |
| 26-Apr-2015 |
mlelstv | branches: 1.58.2; 1.58.8; 1.58.16; 1.58.18; Use C99-style initializers for struct dkdriver.
|
1.57 |
| 02-Jan-2015 |
christos | We have three sets of DTYPE_ constants in the kernel: altq Drop Type disklabel Disk Type file Descriptor Type (not to mention constants that contain the string DTYPE). Let's make them two, by changing the disklabel one to be DisK TYPE since the other disklabel constants seem to do that. Not many userland programs use these constants (and the ones that they do are mostly in ifdefs). They will be fixed shortly.
|
1.56 |
| 25-Oct-2014 |
skrll | branches: 1.56.2; Remove katelib.h and references to it.
{Read,Write}{Word,Byte} macros are provided in the files that still use them. Someone(tm) should convert them to bus_space(9)
|
1.55 |
| 25-Jul-2014 |
dholland | Add d_discard to all struct cdevsw instances I could find.
All have been set to "nodiscard"; some should get a real implementation.
|
1.54 |
| 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.53 |
| 16-Mar-2014 |
dholland | branches: 1.53.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.52 |
| 27-Oct-2012 |
chs | branches: 1.52.2; split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
1.51 |
| 19-Jul-2011 |
dyoung | branches: 1.51.2; 1.51.12; Change <machine/bus.h> to <sys/bus.h> throughout.
Split bus.h -> bus_{defs,funcs}.h.
Mark acorn32/bus.h obsolete.
|
1.50 |
| 03-Jun-2011 |
matt | device_t, cfdata_t, device_private, device_xname cleanup CFATTACH_DECL_NEW for struct device only devices bump SYMTAB_SPACE for EB7500ATX
|
1.49 |
| 09-Dec-2010 |
uebayasi | branches: 1.49.2; 1.49.6; Fix DEBUG build.
|
1.48 |
| 28-Nov-2010 |
hannken | As md(4) no longer has "needs-count" there is no "md.h" anymore. Remove the inclusion of this file.
Acorn32 now always builds load_memory_disc_from_floppy(). This should not be a problem as all configs have md(4).
Observed by: Masao Uebayashi <uebayasi@netbsd.org>
|
1.47 |
| 24-Feb-2010 |
dyoung | branches: 1.47.2; Use device_private().
|
1.46 |
| 12-May-2009 |
cegger | branches: 1.46.2; use device_xname()
|
1.45 |
| 14-Mar-2009 |
dsl | ANSIfy another 1261 function definitions. The only ones left in sys are beyond by sed script! (or in sys/dist or sys/external) Mostly they have function pointer parameters.
|
1.44 |
| 14-Mar-2009 |
dsl | Change about 4500 of the K&R function definitions to ANSI ones. There are still about 1600 left, but they have ',' or /* ... */ in the actual variable definitions - which my awk script doesn't handle. There are also many that need () -> (void). (The script does handle misordered arguments.)
|
1.43 |
| 14-Mar-2009 |
dsl | Remove all the __P() from sys (excluding sys/dist) Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build.
|
1.42 |
| 14-Feb-2009 |
cegger | build & bugfix: spl0 is an alias for splx(IPL_NONE), which effectively results in calling splx() twice.
|
1.41 |
| 13-Jan-2009 |
yamt | branches: 1.41.2; g/c BUFQ_FOO() macros and use bufq_foo() directly.
|
1.40 |
| 16-Dec-2008 |
christos | replace bitmask_snprintf(9) with snprintb(3)
|
1.39 |
| 12-Jun-2008 |
cegger | branches: 1.39.4; use device_lookup_private to get softc
|
1.38 |
| 28-Apr-2008 |
martin | branches: 1.38.2; 1.38.4; Remove clause 3 and 4 from TNF licenses
|
1.37 |
| 08-Jan-2008 |
matt | branches: 1.37.6; 1.37.8; 1.37.10; Remove unused variable.
|
1.36 |
| 05-Jan-2008 |
ad | Missing arg to cv_timedwait().
|
1.35 |
| 02-Jan-2008 |
ad | Merge vmlocking2 to head.
|
1.34 |
| 25-Oct-2007 |
yamt | branches: 1.34.2; 1.34.4; 1.34.8; fix warnings.
|
1.33 |
| 17-Oct-2007 |
garbled | 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.32 |
| 08-Oct-2007 |
ad | branches: 1.32.2; Merge brelse() changes from the vmlocking branch.
|
1.31 |
| 08-Oct-2007 |
ad | Merge disk init changes from the vmlocking branch. These seperate init / destroy of 'struct disk' from attach / detach.
|
1.30 |
| 29-Jul-2007 |
ad | branches: 1.30.2; 1.30.4; 1.30.6; 1.30.8; 1.30.10; 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.29 |
| 09-Jul-2007 |
ad | branches: 1.29.2; 1.29.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.28 |
| 04-Mar-2007 |
christos | branches: 1.28.2; 1.28.4; 1.28.10; Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
1.27 |
| 15-Feb-2007 |
reinoud | branches: 1.27.2; Rename the B_XXX flag to B_DEVPRIVATE flag since it was never used for debugging and its main use is in device drivers. Its used there to signal that the flagged buffer has a special meaning or should be handled differently.
OK'd by Bill Sudenmund on tech-kern.
|
1.26 |
| 14-Apr-2006 |
blymn | Make i/o statistics collection more generic, include tape drives and nfs mounts in the set of devices that statistics will be reported on.
|
1.25 |
| 26-Mar-2006 |
thorpej | Use device_unit().
|
1.24 |
| 23-Feb-2006 |
thorpej | branches: 1.24.2; 1.24.4; 1.24.6; Use device_parent().
|
1.23 |
| 24-Dec-2005 |
perry | branches: 1.23.2; 1.23.4; 1.23.6; Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
|
1.22 |
| 11-Dec-2005 |
christos | merge ktrace-lwp.
|
1.21 |
| 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.20 |
| 09-Jun-2005 |
he | branches: 1.20.2; Adapt to compiling with -Wcast-qual and -Wshadow.
|
1.19 |
| 28-Oct-2004 |
yamt | move buffer queue related stuffs from buf.h to their own header, bufq.h.
|
1.18 |
| 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22364, verified by myself.
|
1.17 |
| 14-Jul-2003 |
lukem | use __KERNEL_RCSID() in a consistent manner
|
1.16 |
| 18-Jun-2003 |
drochner | branches: 1.16.2; don't #include <sys/dkstat.h> where it is (appearently) unused
|
1.15 |
| 19-Apr-2003 |
bjh21 | Fix format string mismatch.
|
1.14 |
| 31-Jan-2003 |
thorpej | Fix printf format from daddr_t changes.
|
1.13 |
| 01-Jan-2003 |
thorpej | Use aprint_normal() for cfprint routines.
|
1.12 |
| 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.11 |
| 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.10 |
| 02-Oct-2002 |
thorpej | branches: 1.10.2; Fix script-o's in previous.
|
1.9 |
| 02-Oct-2002 |
thorpej | Use CFATTACH_DECL().
|
1.8 |
| 27-Sep-2002 |
thorpej | Declare all cfattach structures const.
|
1.7 |
| 27-Sep-2002 |
provos | remove trailing \n in panic(). approved perry.
|
1.6 |
| 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.5 |
| 27-Jul-2002 |
hannken | Convert to new device buffer queue interface.
Approved by: Reinoud Zandijk <reinoud@netbsd.org>
|
1.4 |
| 20-Dec-2001 |
thorpej | branches: 1.4.2; 1.4.10; * Share a common vector page between arm26 and arm32. * Use a common set of exception handlers for all arm32 platforms. * New FIQ framework based on discussions with Ben Harris, shared between arm26 and arm32.
|
1.3 |
| 27-Nov-2001 |
thorpej | Use <machine/intr.h>, not <machine/irqhandler.h>
|
1.2 |
| 22-Nov-2001 |
thorpej | Kill <machine/katelib.h>. Any place that still uses it should just reference <arm/arm32/katelib.h> until such time as all use of this file has been purged from the face of the earth.
|
1.1 |
| 05-Oct-2001 |
reinoud | branches: 1.1.4; Initial commit of the splitting off of arch/acorn32 from arch/arm32.
The IOMD/VIDC combination is now moved to arch/arm/iomd together. These files still need a lot of cleaning up :( .... esp. the RC7500 support that is still dormant in it; this needs either to be removed or split out for RC7500's ``VIDC'' video/audio variant.
Apart from the RC7500 support wich is still in arch/arm32 the iomd,vidc,riscpc and podulebus subdirectories of arch/arm32 can be removed.
This split still uses some small parts of arch/arm32 .... those are the MI parts that haven't been moved yet.
RiscPC/A7000 have been tested and confirmed to build as should NC.
|
1.1.4.9 |
| 03-Jan-2003 |
thorpej | Sync with HEAD.
|
1.1.4.8 |
| 11-Nov-2002 |
nathanw | Catch up to -current
|
1.1.4.7 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
1.1.4.6 |
| 17-Sep-2002 |
nathanw | Catch up to -current.
|
1.1.4.5 |
| 01-Aug-2002 |
nathanw | Catch up to -current.
|
1.1.4.4 |
| 24-Jun-2002 |
nathanw | Curproc->curlwp renaming.
Change uses of "curproc->l_proc" back to "curproc", which is more like the original use. Bare uses of "curproc" are now "curlwp".
"curproc" is now #defined in proc.h as ((curlwp) ? (curlwp)->l_proc) : NULL) so that it is always safe to reference curproc (*de*referencing curproc is another story, but that's always been true).
|
1.1.4.3 |
| 08-Jan-2002 |
nathanw | Catch up to -current.
|
1.1.4.2 |
| 15-Nov-2001 |
thorpej | Machine-dependent kernel mods for scheduler activations on 32-bit ARM processors. Kernel boots multi-user on an XScale, but upcalls not yet tested.
|
1.1.4.1 |
| 05-Oct-2001 |
thorpej | file fd.c was added on branch nathanw_sa on 2001-11-15 08:30:30 +0000
|
1.4.10.4 |
| 30-Aug-2002 |
gehenna | catch up with -current.
|
1.4.10.3 |
| 16-May-2002 |
gehenna | Replace the hard-coded major with calling devsw API.
|
1.4.10.2 |
| 16-May-2002 |
gehenna | Add the block/character device switches.
|
1.4.10.1 |
| 16-May-2002 |
gehenna | Include sys/conf.h instead of machine/conf.h (obsoleted)
|
1.4.2.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.4.2.3 |
| 06-Sep-2002 |
jdolecek | sync kqueue branch with HEAD
|
1.4.2.2 |
| 10-Jan-2002 |
thorpej | Sync kqueue branch with -current.
|
1.4.2.1 |
| 20-Dec-2001 |
thorpej | file fd.c was added on branch kqueue on 2002-01-10 19:36:28 +0000
|
1.10.2.2 |
| 09-Nov-2002 |
bjh21 | Catch up to -current.
|
1.10.2.1 |
| 24-Oct-2002 |
bjh21 | Sync with trunk.
|
1.16.2.7 |
| 10-Nov-2005 |
skrll | Sync with HEAD. Here we go again...
|
1.16.2.6 |
| 02-Nov-2004 |
skrll | Sync with HEAD.
|
1.16.2.5 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.16.2.4 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.16.2.3 |
| 05-Aug-2004 |
skrll | Fix some merge mistakes.
|
1.16.2.2 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.16.2.1 |
| 03-Jul-2003 |
wrstuden | lwp-ify a lot of the arm drivers. Needed to get acorn32/GENERIC compiling.
|
1.20.2.5 |
| 21-Jan-2008 |
yamt | sync with head
|
1.20.2.4 |
| 27-Oct-2007 |
yamt | sync with head.
|
1.20.2.3 |
| 03-Sep-2007 |
yamt | sync with head.
|
1.20.2.2 |
| 26-Feb-2007 |
yamt | sync with head.
|
1.20.2.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.23.6.1 |
| 22-Apr-2006 |
simonb | Sync with head.
|
1.23.4.1 |
| 09-Sep-2006 |
rpaulo | sync with head
|
1.23.2.1 |
| 01-Mar-2006 |
yamt | sync with head.
|
1.24.6.4 |
| 24-May-2006 |
tron | Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
|
1.24.6.3 |
| 28-Mar-2006 |
tron | Merge 2006-03-28 NetBSD-current into the "peter-altq" branch.
|
1.24.6.2 |
| 28-Mar-2006 |
tron | Merge 2006-03-28 NetBSD-current into the "peter-altq" branch.
|
1.24.6.1 |
| 28-Mar-2006 |
tron | Merge 2006-03-28 NetBSD-current into the "peter-altq" branch.
|
1.24.4.1 |
| 19-Apr-2006 |
elad | sync with head - hopefully this will work
|
1.24.2.2 |
| 24-May-2006 |
yamt | sync with head.
|
1.24.2.1 |
| 01-Apr-2006 |
yamt | sync with head.
|
1.27.2.1 |
| 12-Mar-2007 |
rmind | Sync with HEAD.
|
1.28.10.2 |
| 16-Oct-2007 |
garbled | Sync with HEAD
|
1.28.10.1 |
| 03-Oct-2007 |
garbled | Sync with HEAD
|
1.28.4.1 |
| 11-Jul-2007 |
mjf | Sync with head.
|
1.28.2.5 |
| 03-Dec-2007 |
ad | Sync with HEAD.
|
1.28.2.4 |
| 09-Oct-2007 |
ad | Sync with head.
|
1.28.2.3 |
| 20-Aug-2007 |
ad | - Alter disk attach/detach to fix a panic when closing a vnd device. - Sync with HEAD.
|
1.28.2.2 |
| 19-Aug-2007 |
ad | - Back out the biodone() changes. - Eliminate B_ERROR (from HEAD).
|
1.28.2.1 |
| 15-Jul-2007 |
ad | Sync with head.
|
1.29.4.1 |
| 15-Aug-2007 |
skrll | Sync with HEAD.
|
1.29.2.1 |
| 07-Aug-2007 |
matt | Sync with HEAD.
|
1.30.10.1 |
| 14-Oct-2007 |
yamt | sync with head.
|
1.30.8.2 |
| 09-Jan-2008 |
matt | sync with HEAD
|
1.30.8.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
1.30.6.3 |
| 09-Feb-2008 |
chris | Add initial reworking of acorn32 to use new interrupt code.
Note that cats probably won't work currently as acorn32 changed the way that the pic is registered, it has to provide the irq lines as on acorn32 we attach the iomd after we need to register irqs for the pioc. So we setup the irqs for iomd before malloc etc are available. This needs to be fixed.
More work is still needed to update most of the podulebus drivers. First I need to add podulebus wrapper for interrupts that handles the maskaddr and maskbits. Exposing them to the common irq code is wrong.
|
1.30.6.2 |
| 20-Jan-2008 |
chris | Sync to HEAD.
|
1.30.6.1 |
| 01-Jan-2008 |
chris | Sync with HEAD.
|
1.30.4.2 |
| 28-Oct-2007 |
joerg | Sync with HEAD.
|
1.30.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.30.2.1 |
| 28-Feb-2008 |
rjs | Sync with HEAD.
|
1.32.2.1 |
| 13-Nov-2007 |
bouyer | Sync with HEAD
|
1.34.8.2 |
| 08-Jan-2008 |
bouyer | Sync with HEAD
|
1.34.8.1 |
| 02-Jan-2008 |
bouyer | Sync with HEAD
|
1.34.4.2 |
| 31-Dec-2007 |
ad | Catch up with buffer cache changes.
|
1.34.4.1 |
| 31-Dec-2007 |
ad | Make compile with new buffer cache locking scheme.
XXX This should be largely MI, please do not make another clone of disksubr.c.
|
1.34.2.1 |
| 18-Feb-2008 |
mjf | Sync with HEAD.
|
1.37.10.4 |
| 11-Mar-2010 |
yamt | sync with head
|
1.37.10.3 |
| 16-May-2009 |
yamt | sync with head
|
1.37.10.2 |
| 04-May-2009 |
yamt | sync with head.
|
1.37.10.1 |
| 16-May-2008 |
yamt | sync with head.
|
1.37.8.2 |
| 17-Jun-2008 |
yamt | sync with head.
|
1.37.8.1 |
| 18-May-2008 |
yamt | sync with head.
|
1.37.6.3 |
| 17-Jan-2009 |
mjf | Sync with HEAD.
|
1.37.6.2 |
| 29-Jun-2008 |
mjf | Sync with HEAD.
|
1.37.6.1 |
| 02-Jun-2008 |
mjf | Sync with HEAD.
|
1.38.4.1 |
| 18-Jun-2008 |
simonb | Sync with head.
|
1.38.2.1 |
| 23-Jun-2008 |
wrstuden | Sync w/ -current. 34 merge conflicts to follow.
|
1.39.4.3 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
1.39.4.2 |
| 03-Mar-2009 |
skrll | Sync with HEAD.
|
1.39.4.1 |
| 19-Jan-2009 |
skrll | Sync with HEAD.
|
1.41.2.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.46.2.1 |
| 30-Apr-2010 |
uebayasi | Sync with HEAD.
|
1.47.2.2 |
| 12-Jun-2011 |
rmind | sync with head
|
1.47.2.1 |
| 05-Mar-2011 |
rmind | sync with head
|
1.49.6.1 |
| 23-Jun-2011 |
cherry | Catchup with rmind-uvmplock merge.
|
1.49.2.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.51.12.3 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.51.12.2 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.51.12.1 |
| 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
1.51.2.2 |
| 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.51.2.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.52.2.1 |
| 18-May-2014 |
rmind | sync with head
|
1.53.2.1 |
| 10-Aug-2014 |
tls | Rebase.
|
1.56.2.2 |
| 06-Jun-2015 |
skrll | Sync with HEAD
|
1.56.2.1 |
| 06-Apr-2015 |
skrll | Sync with HEAD
|
1.58.18.2 |
| 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|
1.58.18.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|
1.58.16.1 |
| 06-Sep-2018 |
pgoyette | Sync with HEAD
Resolve a couple of conflicts (result of the uimin/uimax changes)
|
1.58.8.1 |
| 27-Apr-2017 |
pgoyette | Restore all work from the former pgoyette-localcount branch (which is now abandoned doe to cvs merge botch).
The branch now builds, and installs via anita. There are still some problems (cgd is non-functional and all atf tests time-out) but they will get resolved soon.
|
1.58.2.3 |
| 20-Jul-2016 |
pgoyette | Adapt the machine/arch dependent code to the new {b,c}devsw reference counting.
XXX Most of these will require testing by someone other than myself, as I have a limited selection of hardware!
|
1.58.2.2 |
| 20-Jul-2016 |
pgoyette | Redo previous. Rather than separately extracting the device_t, we can rely on sc->sc_dev when we need to call device_release().
|
1.58.2.1 |
| 19-Jul-2016 |
pgoyette | Instead of repeatedly typing the conditional initialization of the .d_localcount members in the various {b,c}devsw, define an initializer macro and use it. This also removes the need for defining new symbols for each 'struct localcount'.
As suggested by riastradh@
|
1.61.8.1 |
| 14-Dec-2020 |
thorpej | Sync w/ HEAD.
|
1.62.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.63.8.1 |
| 03-Aug-2021 |
thorpej | Adapt to CFARGS().
|