History log of /src/sys/dev/vme/xy.c |
Revision | | Date | Author | Comments |
1.102 |
| 07-Aug-2021 |
thorpej | Merge thorpej-cfargs2.
|
1.101 |
| 24-Apr-2021 |
thorpej | branches: 1.101.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.100 |
| 10-Nov-2019 |
chs | branches: 1.100.10; 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.99 |
| 26-Apr-2015 |
mlelstv | branches: 1.99.18; Use C99-style initializers for struct dkdriver.
|
1.98 |
| 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.97 |
| 25-Jul-2014 |
dholland | branches: 1.97.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.96 |
| 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.95 |
| 16-Mar-2014 |
dholland | branches: 1.95.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.94 |
| 19-Oct-2013 |
mrg | - remove set but unused variable. - put variables only inside #ifdef inside that same #ifdef. use __USE() where appropriate.
|
1.93 |
| 27-Oct-2012 |
chs | branches: 1.93.2; split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
1.92 |
| 12-Feb-2012 |
matt | branches: 1.92.6; Change old-style function defintions to C89 prototypes.
Approved by releng.
|
1.91 |
| 01-Feb-2011 |
chuck | branches: 1.91.4; 1.91.8; 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.90 |
| 12-May-2009 |
cegger | branches: 1.90.4; 1.90.6; 1.90.8; struct device * -> device_t, no functional changes intended.
|
1.89 |
| 12-May-2009 |
cegger | struct cfdata * -> cfdata_t, no functional changes intended.
|
1.88 |
| 18-Apr-2009 |
tsutsui | Remove extra whitespace added by a stupid tool. XXX: more in src/sys/arch
|
1.87 |
| 18-Mar-2009 |
cegger | bcopy -> memcpy
|
1.86 |
| 18-Mar-2009 |
cegger | bzero -> memset
|
1.85 |
| 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.84 |
| 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.83 |
| 13-Jan-2009 |
yamt | branches: 1.83.2; g/c BUFQ_FOO() macros and use bufq_foo() directly.
|
1.82 |
| 12-Jan-2009 |
cegger | cast to char to printf DISKPART
|
1.81 |
| 11-Jun-2008 |
drochner | branches: 1.81.4; mechanical changes to use device_private() or device_lookup_private() to get softcs, makes the code compile under the stricter type checking introduced earlier today
|
1.80 |
| 05-Apr-2008 |
cegger | branches: 1.80.2; 1.80.4; 1.80.6; 1.80.8; make this compile
|
1.79 |
| 05-Apr-2008 |
cegger | use aprint_*_dev and device_xname
|
1.78 |
| 06-Feb-2008 |
elad | branches: 1.78.6; It's KAUTH_REQ_DEVICE_RAWIO_PASSTHRU_*.
Noted by dogcow@, thanks!
|
1.77 |
| 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.76 |
| 04-Feb-2008 |
elad | Properly classify kauth PASSTHRU requests.
Done with much help from chuck@, thanks!
|
1.75 |
| 02-Jan-2008 |
ad | Merge vmlocking2 to head.
|
1.74 |
| 19-Oct-2007 |
ad | branches: 1.74.2; 1.74.4; 1.74.8; machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
|
1.73 |
| 08-Oct-2007 |
ad | branches: 1.73.2; Merge disk init changes from the vmlocking branch. These seperate init / destroy of 'struct disk' from attach / detach.
|
1.72 |
| 29-Jul-2007 |
ad | branches: 1.72.4; 1.72.6; 1.72.8; 1.72.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.71 |
| 09-Jul-2007 |
ad | branches: 1.71.2; Merge some of the less invasive changes from the vmlocking branch:
- kthread, callout, devsw API changes - select()/poll() improvements - miscellaneous MT safety improvements
|
1.70 |
| 04-Mar-2007 |
mrg | branches: 1.70.2; 1.70.4; fix fall out from caddr_t changes.
|
1.69 |
| 04-Mar-2007 |
christos | Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
1.68 |
| 04-Jan-2007 |
elad | branches: 1.68.2; Consistent usage of KAUTH_GENERIC_ISSUSER.
|
1.67 |
| 27-Aug-2006 |
christos | branches: 1.67.2; don't call variables errno! including from userland breaks things!
|
1.66 |
| 21-Jul-2006 |
ad | - Use the LWP cached credentials where sane. - Minor cosmetic changes.
|
1.65 |
| 15-May-2006 |
yamt | - include kauth.h for kauth_authorize_generic. - wrap a long line.
|
1.64 |
| 14-May-2006 |
elad | integrate kauth.
|
1.63 |
| 10-May-2006 |
skrll | Fix a bunch of cast lvalues.
|
1.62 |
| 28-Mar-2006 |
thorpej | Use device_unit().
|
1.61 |
| 11-Dec-2005 |
christos | branches: 1.61.4; 1.61.6; 1.61.8; 1.61.10; 1.61.12; merge ktrace-lwp.
|
1.60 |
| 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.59 |
| 03-Jun-2005 |
tsutsui | branches: 1.59.2; Add const.
|
1.58 |
| 27-Feb-2005 |
perry | nuke trailing whitespace
|
1.57 |
| 04-Feb-2005 |
perry | de-__P
|
1.56 |
| 28-Oct-2004 |
yamt | branches: 1.56.4; 1.56.6; move buffer queue related stuffs from buf.h to their own header, bufq.h.
|
1.55 |
| 23-Dec-2003 |
pk | xycattach: use correct map in vme_dmamap_create().
|
1.54 |
| 29-Sep-2003 |
wiz | available, not avaliable. From miod@openbsd.
|
1.53 |
| 28-Aug-2003 |
mrg | fix error in previous
|
1.52 |
| 27-Aug-2003 |
mrg | x[yd]_dmamem_alloc() takes a bus_addr_t *. don't pass the address of a long! found by GCC3.
|
1.51 |
| 29-Jun-2003 |
fvdl | branches: 1.51.2; Back out the lwp/ktrace changes. They contained a lot of colateral damage, and need to be examined and discussed more.
|
1.50 |
| 29-Jun-2003 |
darrenr | More changes for providing lwpid for ktrace (sparc GENERIC built)
|
1.49 |
| 10-May-2003 |
thorpej | 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.48 |
| 02-May-2003 |
dsl | Change return type of readdisklabel() to const char * I hope I've found all the correct places!
|
1.47 |
| 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.46 |
| 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.45 |
| 02-Oct-2002 |
thorpej | Add trailing ; to CFATTACH_DECL.
|
1.44 |
| 01-Oct-2002 |
thorpej | Use CFATTACH_DECL().
|
1.43 |
| 27-Sep-2002 |
thorpej | Declare all cfattach structures const.
|
1.42 |
| 27-Sep-2002 |
provos | remove trailing \n in panic(). approved perry.
|
1.41 |
| 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.40 |
| 23-Jul-2002 |
hannken | Convert to new device buffer queue interface.
Approved by: Nathan J. Williams <nathanw@netbsd.org>
|
1.39 |
| 14-Jan-2002 |
tsutsui | branches: 1.39.8; Call malloc(9) with M_ZERO flag instead of bzero() after malloc().
|
1.38 |
| 13-Nov-2001 |
lukem | add RCSIDs
|
1.37 |
| 24-Sep-2001 |
eeh | Change bus_space_mmap() signature to the official one.
|
1.36 |
| 22-Jul-2001 |
wiz | branches: 1.36.2; seperate -> separate
|
1.35 |
| 13-Mar-2001 |
chs | branches: 1.35.2; make this compile again.
|
1.34 |
| 06-Mar-2001 |
thorpej | Don't misuse bus_dmamap_load_raw().
|
1.33 |
| 15-Jan-2001 |
fvdl | branches: 1.33.2; Move decl out of __HAVE_OLD_DISKLABEL
|
1.32 |
| 08-Jan-2001 |
fvdl | Return error in the case of using ODIOCGDINFO or ODIOCGDEFLABEL when the number of partitions is > OLDMAXPARTITIONS. This is better than silently truncating the label (don't want to silently throw away partitions when using an old disklabel binary on a label with > 8 partitions). From Enami Tsugutomo.
|
1.31 |
| 07-Jan-2001 |
fvdl | Adapt all disk devices in MI directories to handle ODIOC* calls for ports that have bumped MAXPARTITIONS (and thus define __HAVE_OLD_DISKLABEL).
|
1.30 |
| 24-Jul-2000 |
scw | Pass the level and vector to vme_intr_map() in the correct order.
|
1.29 |
| 10-Jul-2000 |
mrg | these don't need <uvm/uvm_extern.h> at all, actually.
|
1.28 |
| 07-Jul-2000 |
pk | Use vme_dmamap_create(). Also, this device lives in VME_D16 data space.
|
1.27 |
| 29-Jun-2000 |
fvdl | Fix some missed vm/vm.h -> uvm/uvm_extern.h conversions.
|
1.26 |
| 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.25 |
| 05-Jun-2000 |
chs | branches: 1.25.2; change ifdef __sun3__ to sun3, since the former isn't defined on sun3. (not that it matters, since the sun3 currently has its own copy of these files anyway, but it's nice to be consistent.)
|
1.24 |
| 04-Jun-2000 |
cgd | Implement the more flexiable `evcnt' interface as discussed (briefly) on tech-kern and now documented in evcnt(9).
|
1.23 |
| 27-May-2000 |
thorpej | branches: 1.23.2; sleep() -> tsleep()
|
1.22 |
| 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.21 |
| 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.20 |
| 10-May-2000 |
pk | No need to specify page alignment; this is automatic.
|
1.19 |
| 09-May-2000 |
pk | Conform bus_dmamem_{alloc,map} usage to bus_dma(9) specs.
|
1.18 |
| 10-Apr-2000 |
chs | sparc -> __sparc__ sun3 -> __sun3__
|
1.17 |
| 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.16 |
| 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.15 |
| 21-Jan-2000 |
thorpej | Update for sys/buf.h/disksort_*() changes.
|
1.14 |
| 28-Jul-1999 |
drochner | branches: 1.14.2; fix the previous fix
|
1.13 |
| 28-Jul-1999 |
christos | make these compile again s/#endif/#else/ again, it is impossible for me to make sure that they work.
|
1.12 |
| 30-Jun-1999 |
drochner | update for new VME framework
|
1.11 |
| 05-Mar-1999 |
pk | branches: 1.11.4; * sparc => __sparc__ * wrap Sun disklabel code in `#if __sparc__ || __sun3__' for now.
|
1.10 |
| 22-Aug-1998 |
pk | Fix DVMA address handling.
|
1.9 |
| 20-Jun-1998 |
mrg | moved <machine/sun_disklabel.h> to <dev/sun/disklabel.h>
|
1.8 |
| 06-Feb-1998 |
pk | vme_bus_probe() takes an `offset' argument.
|
1.7 |
| 04-Feb-1998 |
thorpej | Add offset and length parameters to bus_dmamap_sync(), used for specifiying partial syncs of a DMA mapping.
|
1.6 |
| 04-Feb-1998 |
pk | Use vme_bus_probe() callback for device detection.
|
1.5 |
| 04-Feb-1998 |
thorpej | Add dm_mapsize to bus_dmamap_t and rename BUS_DMAMEM_NOSYNC to BUS_DMA_COHERENT.
|
1.4 |
| 25-Jan-1998 |
pk | Remove vestiges of sparc-related bootpaths.
|
1.3 |
| 12-Jan-1998 |
thorpej | Adjust for changes to config.
|
1.2 |
| 01-Dec-1997 |
pk | Use `busdma' macros.
|
1.1 |
| 02-Nov-1997 |
pk | Converted Xylogics 450 (XY) VME driver.
|
1.11.4.2 |
| 02-Aug-1999 |
thorpej | Update from trunk.
|
1.11.4.1 |
| 01-Jul-1999 |
thorpej | Sync w/ -current.
|
1.14.2.4 |
| 27-Mar-2001 |
bouyer | Sync with HEAD.
|
1.14.2.3 |
| 12-Mar-2001 |
bouyer | Sync with HEAD.
|
1.14.2.2 |
| 18-Jan-2001 |
bouyer | Sync with head (for UBC+NFS fixes, mostly).
|
1.14.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.23.2.1 |
| 22-Jun-2000 |
minoura | Sync w/ netbsd-1-5-base.
|
1.25.2.4 |
| 15-May-2001 |
he | Pull up revision 1.33 (requested by windsor): Fix build problem related to __HAVE_OLD_DISKLABEL.
|
1.25.2.3 |
| 01-May-2001 |
he | Pull up revisions 1.31-1.32 (requested by fvdl): Increase the number of BSD disklabel partitions on i386 to 16.
|
1.25.2.2 |
| 25-Jul-2000 |
pk | Pull up revision 1.30 from trunk:
Pass the level and vector to vme_intr_map() in the correct order.
|
1.25.2.1 |
| 22-Jul-2000 |
pk | Pullup rev. 1.28.
Use vme_dmamap_create(). Also, this device lives in VME_D16 data space.
|
1.33.2.9 |
| 11-Nov-2002 |
nathanw | Catch up to -current
|
1.33.2.8 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
1.33.2.7 |
| 17-Sep-2002 |
nathanw | Catch up to -current.
|
1.33.2.6 |
| 01-Aug-2002 |
nathanw | Catch up to -current.
|
1.33.2.5 |
| 28-Feb-2002 |
nathanw | Catch up to -current.
|
1.33.2.4 |
| 14-Nov-2001 |
nathanw | Catch up to -current.
|
1.33.2.3 |
| 26-Sep-2001 |
nathanw | Catch up to -current. Again.
|
1.33.2.2 |
| 24-Aug-2001 |
nathanw | Catch up with -current.
|
1.33.2.1 |
| 09-Apr-2001 |
nathanw | Catch up with -current.
|
1.35.2.5 |
| 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.35.2.4 |
| 06-Sep-2002 |
jdolecek | sync kqueue branch with HEAD
|
1.35.2.3 |
| 11-Feb-2002 |
jdolecek | Sync w/ -current.
|
1.35.2.2 |
| 10-Jan-2002 |
thorpej | Sync kqueue branch with -current.
|
1.35.2.1 |
| 03-Aug-2001 |
lukem | update to -current
|
1.36.2.2 |
| 10-Oct-2001 |
fvdl | Convert all remaining devices.
|
1.36.2.1 |
| 01-Oct-2001 |
fvdl | Catch up with -current.
|
1.39.8.2 |
| 29-Aug-2002 |
gehenna | catch up with -current.
|
1.39.8.1 |
| 16-May-2002 |
gehenna | Add the block/character device switches.
|
1.51.2.8 |
| 10-Nov-2005 |
skrll | Sync with HEAD. Here we go again...
|
1.51.2.7 |
| 04-Mar-2005 |
skrll | Sync with HEAD.
Hi Perry!
|
1.51.2.6 |
| 04-Feb-2005 |
skrll | Sync with HEAD.
|
1.51.2.5 |
| 04-Feb-2005 |
skrll | Adapt to branch.
|
1.51.2.4 |
| 02-Nov-2004 |
skrll | Sync with HEAD.
|
1.51.2.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.51.2.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.51.2.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.56.6.2 |
| 19-Mar-2005 |
yamt | sync with head. xen and whitespace. xen part is not finished.
|
1.56.6.1 |
| 12-Feb-2005 |
yamt | sync with head.
|
1.56.4.1 |
| 29-Apr-2005 |
kent | sync with -current
|
1.59.2.7 |
| 11-Feb-2008 |
yamt | sync with head.
|
1.59.2.6 |
| 21-Jan-2008 |
yamt | sync with head
|
1.59.2.5 |
| 27-Oct-2007 |
yamt | sync with head.
|
1.59.2.4 |
| 03-Sep-2007 |
yamt | sync with head.
|
1.59.2.3 |
| 26-Feb-2007 |
yamt | sync with head.
|
1.59.2.2 |
| 30-Dec-2006 |
yamt | sync with head.
|
1.59.2.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.61.12.2 |
| 24-May-2006 |
tron | Merge 2006-05-24 NetBSD-current into the "peter-altq" branch.
|
1.61.12.1 |
| 31-Mar-2006 |
tron | Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
|
1.61.10.4 |
| 11-May-2006 |
elad | sync with head
|
1.61.10.3 |
| 19-Apr-2006 |
elad | sync with head.
|
1.61.10.2 |
| 10-Mar-2006 |
elad | generic_authorize() -> kauth_authorize_generic().
|
1.61.10.1 |
| 08-Mar-2006 |
elad | Adapt to kernel authorization KPI.
|
1.61.8.4 |
| 03-Sep-2006 |
yamt | sync with head.
|
1.61.8.3 |
| 11-Aug-2006 |
yamt | sync with head
|
1.61.8.2 |
| 24-May-2006 |
yamt | sync with head.
|
1.61.8.1 |
| 01-Apr-2006 |
yamt | sync with head.
|
1.61.6.2 |
| 01-Jun-2006 |
kardel | Sync with head.
|
1.61.6.1 |
| 22-Apr-2006 |
simonb | Sync with head.
|
1.61.4.1 |
| 09-Sep-2006 |
rpaulo | sync with head
|
1.67.2.1 |
| 12-Jan-2007 |
ad | Sync with head.
|
1.68.2.1 |
| 12-Mar-2007 |
rmind | Sync with HEAD.
|
1.70.4.1 |
| 11-Jul-2007 |
mjf | Sync with head.
|
1.70.2.4 |
| 23-Oct-2007 |
ad | Sync with head.
|
1.70.2.3 |
| 20-Aug-2007 |
ad | - Alter disk attach/detach to fix a panic when closing a vnd device. - Sync with HEAD.
|
1.70.2.2 |
| 19-Aug-2007 |
ad | - Back out the biodone() changes. - Eliminate B_ERROR (from HEAD).
|
1.70.2.1 |
| 01-Jul-2007 |
ad | Adapt to callout API change.
|
1.71.2.1 |
| 15-Aug-2007 |
skrll | Sync with HEAD.
|
1.72.10.2 |
| 29-Jul-2007 |
ad | 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.72.10.1 |
| 29-Jul-2007 |
ad | file xy.c was added on branch matt-mips64 on 2007-07-29 12:15:45 +0000
|
1.72.8.1 |
| 14-Oct-2007 |
yamt | sync with head.
|
1.72.6.3 |
| 23-Mar-2008 |
matt | sync with HEAD
|
1.72.6.2 |
| 09-Jan-2008 |
matt | sync with HEAD
|
1.72.6.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
1.72.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.73.2.1 |
| 25-Oct-2007 |
bouyer | Sync with HEAD.
|
1.74.8.1 |
| 02-Jan-2008 |
bouyer | Sync with HEAD
|
1.74.4.1 |
| 02-Jan-2008 |
ad | Buffer cache locking changes.
|
1.74.2.1 |
| 18-Feb-2008 |
mjf | Sync with HEAD.
|
1.78.6.3 |
| 17-Jan-2009 |
mjf | Sync with HEAD.
|
1.78.6.2 |
| 29-Jun-2008 |
mjf | Sync with HEAD.
|
1.78.6.1 |
| 02-Jun-2008 |
mjf | Sync with HEAD.
|
1.80.8.1 |
| 18-Jun-2008 |
simonb | Sync with head.
|
1.80.6.1 |
| 23-Jun-2008 |
wrstuden | Sync w/ -current. 34 merge conflicts to follow.
|
1.80.4.2 |
| 16-May-2009 |
yamt | sync with head
|
1.80.4.1 |
| 04-May-2009 |
yamt | sync with head.
|
1.80.2.1 |
| 17-Jun-2008 |
yamt | sync with head.
|
1.81.4.2 |
| 28-Apr-2009 |
skrll | Sync with HEAD.
|
1.81.4.1 |
| 19-Jan-2009 |
skrll | Sync with HEAD.
|
1.83.2.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.90.8.1 |
| 08-Feb-2011 |
bouyer | Sync with HEAD
|
1.90.6.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.90.4.1 |
| 05-Mar-2011 |
rmind | sync with head
|
1.91.8.1 |
| 18-Feb-2012 |
mrg | merge to -current.
|
1.91.4.3 |
| 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.91.4.2 |
| 30-Oct-2012 |
yamt | sync with head
|
1.91.4.1 |
| 17-Apr-2012 |
yamt | sync with head
|
1.92.6.3 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.92.6.2 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.92.6.1 |
| 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
1.93.2.1 |
| 18-May-2014 |
rmind | sync with head
|
1.95.2.1 |
| 10-Aug-2014 |
tls | Rebase.
|
1.97.4.2 |
| 06-Jun-2015 |
skrll | Sync with HEAD
|
1.97.4.1 |
| 06-Apr-2015 |
skrll | Sync with HEAD
|
1.99.18.1 |
| 13-Apr-2020 |
martin | Mostly merge changes from HEAD upto 20200411
|
1.100.10.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.101.8.1 |
| 04-Aug-2021 |
thorpej | Adapt to CFARGS().
|