Home | History | Annotate | Download | only in dev
History log of /src/sys/arch/x68k/dev/sram.c
RevisionDateAuthorComments
 1.23  27-Jan-2025  andvar s/probeing/probing/ in comments.
 1.22  07-Jan-2024  isaki branches: 1.22.2;
TAB/space/indent cleanup.
 1.21  26-May-2022  tsutsui Explicitly include "ioconf.h" for struct cfdriver.
 1.20  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.19  16-Mar-2014  dholland branches: 1.19.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.18  21-Dec-2008  isaki branches: 1.18.14; 1.18.24; 1.18.28;
Make sram(4) a hardware device.
# I wrote this in 2001 :-)
 1.17  14-Dec-2008  isaki Use intio_set_*() macros to purge macros by the name of sysport, ioctlr.
 1.16  11-Mar-2007  isaki branches: 1.16.38; 1.16.42; 1.16.50;
white space, indent and KNF.
 1.15  11-Mar-2007  isaki Remove an extra white space.
 1.14  04-Mar-2007  christos branches: 1.14.2;
Kill caddr_t; there will be some MI fallout, but it will be fixed shortly.
 1.13  29-Oct-2006  he branches: 1.13.4;
Work around the propagation of volatile-ness from struct to struct members.

OK'ed by nsmrtks.
 1.12  11-Dec-2005  christos branches: 1.12.20; 1.12.22;
merge ktrace-lwp.
 1.11  18-Jan-2005  chs branches: 1.11.8;
de-__P, remove register, ansify.
 1.10  15-Jul-2003  lukem branches: 1.10.8;
rcsid
 1.9  23-Oct-2002  jdolecek branches: 1.9.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.8  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.7  27-Dec-2001  wiz branches: 1.7.8;
bcopy/bcmp/bzero -> memcpy/memcmp/memset
 1.6  15-Jun-1999  minoura branches: 1.6.14; 1.6.16; 1.6.20;
Check file open mode at ioctl.
Add debug option SRAM_DEBUG_DONTDOIT.
 1.5  10-Oct-1997  oki branches: 1.5.12; 1.5.14; 1.5.16;
Add prototypes.
 1.4  13-Oct-1996  christos branches: 1.4.10;
backout previous kprintf change
 1.3  11-Oct-1996  christos printf -> kprintf, sprintf -> ksprintf
 1.2  12-May-1996  oki fixed for gcc -Wall warning.
 1.1  05-May-1996  oki branches: 1.1.1;
Initial revision
 1.1.1.1  05-May-1996  oki NetBSD/x68k, by Masaru Oki.
 1.4.10.1  14-Oct-1997  thorpej Update marc-pcmcia branch from trunk.
 1.5.16.1  30-Nov-1999  itojun bring in latest KAME (as of 19991130, KAME/NetBSD141) into kame branch
just for reference purposes.
This commit includes 1.4 -> 1.4.1 sync for kame branch.

The branch does not compile at all (due to the lack of ALTQ and some other
source code). Please do not try to modify the branch, this is just for
referenre purposes.

synchronization to latest KAME will take place on HEAD branch soon.
 1.5.14.1  21-Jun-1999  thorpej Sync w/ -current.
 1.5.12.1  24-Jun-1999  perry pullup 1.5->1.6 (minoura)
 1.6.20.3  11-Nov-2002  nathanw Catch up to -current
 1.6.20.2  17-Sep-2002  nathanw Catch up to -current.
 1.6.20.1  08-Jan-2002  nathanw Catch up to -current.
 1.6.16.2  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.6.16.1  10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.6.14.1  10-Oct-2001  fvdl Convert all remaining devices.
 1.7.8.2  08-Jun-2002  gehenna fix compiler warning.
 1.7.8.1  17-May-2002  gehenna Add device switch.
 1.9.6.5  04-Feb-2005  skrll Adapt to branch.
 1.9.6.4  24-Jan-2005  skrll Sync with HEAD.
 1.9.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.9.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.9.6.1  03-Aug-2004  skrll Sync with HEAD
 1.10.8.1  29-Apr-2005  kent sync with -current
 1.11.8.3  03-Sep-2007  yamt sync with head.
 1.11.8.2  30-Dec-2006  yamt sync with head.
 1.11.8.1  21-Jun-2006  yamt sync with head.
 1.12.22.1  10-Dec-2006  yamt sync with head.
 1.12.20.1  18-Nov-2006  ad Sync with head.
 1.13.4.1  12-Mar-2007  rmind Sync with HEAD.
 1.14.2.1  13-Mar-2007  ad Sync with head.
 1.16.50.1  19-Jan-2009  skrll Sync with HEAD.
 1.16.42.1  04-May-2009  yamt sync with head.
 1.16.38.1  17-Jan-2009  mjf Sync with HEAD.
 1.18.28.1  18-May-2014  rmind sync with head
 1.18.24.1  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.18.14.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.19.2.1  10-Aug-2014  tls Rebase.
 1.22.2.1  02-Aug-2025  perseant Sync with HEAD

RSS XML Feed