Home | History | Annotate | Download | only in vme
History log of /src/sys/arch/atari/vme/leo.c
RevisionDateAuthorComments
 1.24  06-Jan-2023  tsutsui TAB/spaces/indents cleanup.
 1.23  03-Jul-2022  tsutsui Make local cdevsw functions static.

XXX: there is no config file that has leo(4) (though it still compiles)
 1.22  01-Feb-2017  christos PR/51933: David Binderman: Boolean confusion
 1.21  25-Jul-2014  dholland branches: 1.21.4; 1.21.8; 1.21.12;
Add d_discard to all struct cdevsw instances I could find.

All have been set to "nodiscard"; some should get a real implementation.
 1.20  16-Mar-2014  dholland branches: 1.20.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.19  01-Jul-2011  dyoung branches: 1.19.2; 1.19.12; 1.19.16;
#include <sys/bus.h> instead of <machine/bus.h>.
 1.18  10-Jun-2011  tsutsui - split device_t/softc
- struct proc -> struct lwp

XXX: this driver is not in the default kernels.
 1.17  13-Apr-2010  tsutsui branches: 1.17.6;
Include "ioconf.h" to declare struct cfdriver foo_cd.
 1.16  14-Mar-2009  dsl branches: 1.16.2; 1.16.4;
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.15  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.14  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.13  13-Jun-2008  cegger branches: 1.13.4; 1.13.10;
use device_lookup_private to get softc
 1.12  28-Apr-2008  martin branches: 1.12.2; 1.12.4;
Remove clause 3 and 4 from TNF licenses
 1.11  04-Mar-2007  christos branches: 1.11.40; 1.11.42; 1.11.44;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.10  11-Dec-2005  christos branches: 1.10.26;
merge ktrace-lwp.
 1.9  15-Jul-2003  lukem branches: 1.9.16;
__KERNEL_RCSID()
 1.8  23-Oct-2002  jdolecek branches: 1.8.6;
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.7  02-Oct-2002  thorpej Use CFATTACH_DECL().
 1.6  27-Sep-2002  thorpej Declare all cfattach structures const.
 1.5  27-Sep-2002  provos remove trailing \n in panic(). approved perry.
 1.4  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.3  26-Jun-2000  simonb branches: 1.3.2; 1.3.4; 1.3.8; 1.3.16;
Change the kernel mmap interface so that the offset to map is an
"off_t" and the return value is a "paddr_t" to allow mappings
at offsets past 2^31 bytes. Somewhat inspired by FreeBSD, which
only changed the offset to a "vm_offset_t".

Includes updates for the i386, pc532 and sh3 mmmmap from Jason Thorpe.
 1.2  25-Oct-1999  leo branches: 1.2.6;
correct second argument of bus_space_unmap().
 1.1  18-Aug-1998  leo branches: 1.1.6; 1.1.12; 1.1.14; 1.1.16;
Circad Leonardo video driver by 'maximum entropy'.
 1.1.16.1  27-Dec-1999  wrstuden Pull up to last week's -current.
 1.1.14.1  15-Nov-1999  fvdl Sync with -current
 1.1.12.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.1.6.1  04-Dec-1999  he Pull up revision 1.2 (requested by leo):
Fix arguments of bus_space_unmap().
 1.2.6.1  30-Jun-2000  simonb Pull up mmap paddr_t/off_t changes from trunk.
 1.3.16.1  17-May-2002  gehenna Add device switch.
 1.3.8.3  11-Nov-2002  nathanw Catch up to -current
 1.3.8.2  18-Oct-2002  nathanw Catch up to -current.
 1.3.8.1  17-Sep-2002  nathanw Catch up to -current.
 1.3.4.1  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.3.2.1  10-Oct-2001  fvdl Convert all remaining devices.
 1.8.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.8.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.8.6.1  03-Aug-2004  skrll Sync with HEAD
 1.9.16.1  03-Sep-2007  yamt sync with head.
 1.10.26.1  12-Mar-2007  rmind Sync with HEAD.
 1.11.44.3  11-Aug-2010  yamt sync with head.
 1.11.44.2  04-May-2009  yamt sync with head.
 1.11.44.1  16-May-2008  yamt sync with head.
 1.11.42.2  17-Jun-2008  yamt sync with head.
 1.11.42.1  18-May-2008  yamt sync with head.
 1.11.40.2  29-Jun-2008  mjf Sync with HEAD.
 1.11.40.1  02-Jun-2008  mjf Sync with HEAD.
 1.12.4.1  18-Jun-2008  simonb Sync with head.
 1.12.2.1  23-Jun-2008  wrstuden Sync w/ -current. 34 merge conflicts to follow.
 1.13.10.1  13-May-2009  jym Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.
 1.13.4.1  28-Apr-2009  skrll Sync with HEAD.
 1.16.4.2  12-Jun-2011  rmind sync with head
 1.16.4.1  30-May-2010  rmind sync with head
 1.16.2.1  30-Apr-2010  uebayasi Sync with HEAD.
 1.17.6.1  23-Jun-2011  cherry Catchup with rmind-uvmplock merge.
 1.19.16.1  18-May-2014  rmind sync with head
 1.19.12.2  03-Dec-2017  jdolecek update from HEAD
 1.19.12.1  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.19.2.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.20.2.1  10-Aug-2014  tls Rebase.
 1.21.12.1  21-Apr-2017  bouyer Sync with HEAD
 1.21.8.1  20-Mar-2017  pgoyette Sync with HEAD
 1.21.4.1  05-Feb-2017  skrll Sync with HEAD

RSS XML Feed