#
d3ac4140 |
| 26-Mar-2023 |
andvar <andvar@NetBSD.org> |
s/diplay/display/ and s/DIPPLAY/DISPLAY/ in comments.
|
#
e7ae23fd |
| 20-Aug-2015 |
christos <christos@NetBSD.org> |
include "ioconf.h" to get the 'void <driver>attach(int count);' prototype.
|
#
f9228f42 |
| 25-Jul-2014 |
dholland <dholland@NetBSD.org> |
Add d_discard to all struct cdevsw instances I could find.
All have been set to "nodiscard"; some should get a real implementation.
|
#
a68f9396 |
| 16-Mar-2014 |
dholland <dholland@NetBSD.org> |
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
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.
show more ...
|
#
53524e44 |
| 04-Mar-2007 |
christos <christos@NetBSD.org> |
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
|
#
95e1ffb1 |
| 11-Dec-2005 |
christos <christos@NetBSD.org> |
merge ktrace-lwp.
|
#
7acd68b1 |
| 15-Jan-2005 |
chs <chs@NetBSD.org> |
de-__P, remove register, ansify, b* -> mem*.
|
#
4b2744bf |
| 15-Jul-2003 |
lukem <lukem@NetBSD.org> |
__KERNEL_RCSID()
|
#
e0cc03a0 |
| 23-Oct-2002 |
jdolecek <jdolecek@NetBSD.org> |
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
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
show more ...
|
#
77a6b82b |
| 06-Sep-2002 |
gehenna <gehenna@NetBSD.org> |
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 st
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.
show more ...
|
#
94225b14 |
| 14-May-2001 |
scw <scw@NetBSD.org> |
port-mac68l/12931 by Dave Huang:
Add an itepoll() function. This one slipped through my recent sweep of line-disciplines...
|
#
05427790 |
| 22-Jan-2001 |
scottr <scottr@NetBSD.org> |
Correct a thinko: iteopen()/iteclose() shouldn't just pass off to the wsdisplay driver. Otherwise, closing ttye0 (ite compat) ends up closing ttyE0, the actual console, when ttyflags runs. Fixes P
Correct a thinko: iteopen()/iteclose() shouldn't just pass off to the wsdisplay driver. Otherwise, closing ttye0 (ite compat) ends up closing ttyE0, the actual console, when ttyflags runs. Fixes PR 12022.
show more ...
|
#
8a007407 |
| 14-Feb-2000 |
scottr <scottr@NetBSD.org> |
Merge wscons work onto the main development branch.
|