Poul-Henning Kamp
c48d17750f
Introduce two functions: physread() and physwrite() and use these directly
...
in *devsw[] rather than the 46 local copies of the same functions.
(grog will do the same for vinum when he has time)
1999-05-07 07:03:47 +00:00
Poul-Henning Kamp
b0eeea2042
remove b_proc from struct buf, it's (now) unused.
...
Reviewed by: dillon, bde
1999-05-06 20:00:34 +00:00
KATO Takenori
ef560ddafd
Sync with sys/i386/isa/fd.c revision 1.137.
1999-05-05 03:43:00 +00:00
Poul-Henning Kamp
f711d546d2
Suser() simplification:
...
1:
s/suser/suser_xxx/
2:
Add new function: suser(struct proc *), prototyped in <sys/proc.h>.
3:
s/suser_xxx(\([a-zA-Z0-9_]*\)->p_ucred, \&\1->p_acflag)/suser(\1)/
The remaining suser_xxx() calls will be scrutinized and dealt with
later.
There may be some unneeded #include <sys/cred.h>, but they are left
as an exercise for Bruce.
More changes to the suser() API will come along with the "jail" code.
1999-04-27 11:18:52 +00:00
KATO Takenori
c55a92c639
Sync with follwing files:
...
Path Revision
i386/conf/GENERIC 1.162
i386/conf/Makefile.i386 1.146
i386/conf/files.i386 1.236
i386/conf/options.i386 1.111
i386/i386/machdep.c 1.329
i386/i386/userconfig.c 1.134
i386/isa/fd.c 1.135
i386/isa/if_ed.c 1.151
i386/isa/isa_dam.c 1.1
i386/isa/npx.c 1.67
isa/sio.c 1.224
dev/syscons/syscons.c 1.300
i386/isa/wd.c 1.194
isa/vga_isa.c 1.5
isa/atkbd_isa.c 1.3
isa/syscons_isa.c 1.2
Submitted by: Takahashi Yoshihiro <nyan@wyvern.cc.kogakuin.ac.jp>
1999-04-18 14:42:20 +00:00
Peter Wemm
6ac1f14d0b
Use PHOLD/PRELE() instead of P_PHSYIO.
1999-04-06 03:12:22 +00:00
Kenneth D. Merry
2a888f938e
Add a prioritization field to the devstat_add_entry() call so that
...
peripheral drivers can determine where in the devstat(9) list they are
inserted.
This requires recompilation of libdevstat, systat, vmstat, rpc.rstatd, and
any ports that depend on the devstat code, since the size of the devstat
structure has changed. The devstat version number has been incremented as
well to reflect the change.
This sorts devices in the devstat list in "more interesting" to "less
interesting" order. So, for instance, da devices are now more important
than floppy drives, and so will appear before floppy drives in the default
output from systat, iostat, vmstat, etc.
The order of devices is, for now, kept in a central table in devicestat.h.
If individual drivers were able to make a meaningful decision on what
priority they should be at attach time, we could consider splitting the
priority information out into the various drivers. For now, though, they
have no way of knowing that, so it's easier to put them in an easy to find
table.
Also, move the checkversion() call in vmstat(8) to a more logical place.
Thanks to Bruce and David O'Brien for suggestions, for reviewing this, and
for putting up with the long time it has taken me to commit it. Bruce did
object somewhat to the central priority table (he would rather the
priorities be distributed in each driver), so his objection is duly noted
here.
Reviewed by: bde, obrien
1999-02-10 00:04:13 +00:00
KATO Takenori
4d8efbff69
The "easy" fixes for compiling the kernel -Wunused: remove unreferenced static
...
and local variables, goto labels, and functions declared but not defined.
1999-01-28 11:24:36 +00:00
Peter Wemm
d17e4ee67d
Update the pccard hooks to use a module style declaration instead.
1999-01-19 00:21:53 +00:00
KATO Takenori
21da8ffad1
Sync with sys/i386/isa/fd.c revision 1.131.
1999-01-16 11:40:02 +00:00
KATO Takenori
a498ae6954
Sync with sys/i386/isa/fd.c revision 1.130.
1998-12-30 08:06:41 +00:00
KATO Takenori
012291989b
Sync with sys/i386/isa/fd.c revision 1.129.
1998-12-17 08:40:36 +00:00
KATO Takenori
c2a3601760
Sync with sys/i386/isa/fd.c revision 1.128.
1998-12-14 09:06:23 +00:00
Eivind Eklund
2ae353f9a7
Rename one of the two devfs_link's to devfs_makelink.
1998-12-10 19:57:01 +00:00
KATO Takenori
e4561e2ae0
Sync with sys/i386/isa/fd.c, if_fe.c, npx.c and sio.c revisions 1.126,
...
1.44, 1.63 and 1.219, respectively.
1998-12-08 08:18:59 +00:00
KATO Takenori
6684a4f19d
Sync with sys/i386/isa/fd.c revision 1.125.
1998-12-05 09:24:20 +00:00
Bruce Evans
fe310de802
Initialize isa_devtab entries for interrupt handlers in individual
...
device drivers, not in ioconf.c. Use a different hack in isa_device.h
so that a new config(8) is not required yet.
pc98 parts approved by: kato
1998-10-22 05:58:45 +00:00
KATO Takenori
c87ddee143
Sync with sys/i386/isa/fd.c revision 1.123.
1998-09-16 08:08:38 +00:00
KATO Takenori
a42481ee16
Sync with sys/i386/isa/fd.c and wd.c revisions 1.122 and 1.176,
...
respectively.
1998-09-15 14:07:08 +00:00
Søren Schmidt
d024c95599
Remove the SLICE code.
...
This clearly needs alot more thought, and we dont need this to hunt
us down in 3.0-RELEASE.
1998-09-14 19:56:42 +00:00
KATO Takenori
523bea959c
Sync with sys/i386/isa/fd.c revision 1.120.
1998-07-30 09:01:12 +00:00
KATO Takenori
1e023fc3c6
Sync with sys/i386/isa/fd.c revision 1.119.
1998-07-19 15:03:49 +00:00
KATO Takenori
c76d1cd8e7
Sync with sys/i386/isa/fd.c revision 1.118.
1998-07-16 10:27:49 +00:00
KATO Takenori
6baa65474d
Sync with sys/i386/isa/fd.c and wd.c revisions 1.117 and 1.172,
...
respectively.
1998-07-13 09:29:25 +00:00
KATO Takenori
13992e6dc1
Sync with sys/i386/isa/fd.c revision 1.116.
1998-07-11 17:02:07 +00:00
KATO Takenori
36a5980c70
Sync with sys/i386/isa/fd.c and wd.c revisions 1.115 and 1.170,
...
respectively.
1998-07-06 10:09:42 +00:00
KATO Takenori
c7e9ceee59
Merge 64bit portability fixes from sys/i386 stuff.
1998-06-08 08:55:47 +00:00
KATO Takenori
0b9df1bef1
Sync with sys/i386/isa/fd.c revision 1.112.
1998-05-07 08:36:48 +00:00
Julian Elischer
26d3bf5f1b
close() is no longer a SLICE method.
...
Close is simply an open with no-read and no-write once internal to SLICE
(it still exports a close to the rest of the kernel)
1998-04-22 10:25:27 +00:00
KATO Takenori
9a3c443d5a
Sync with sys/i386/isa/fd.c revision 1.109.
1998-04-20 13:50:58 +00:00
Dag-Erling Smørgrav
dc73342347
Seventy-odd "its" / "it's" typos in comments fixed as per kern/6108.
1998-04-17 22:37:19 +00:00
Eivind Eklund
7b778b5e61
Make all file-system (MFS, FFS, NFS, LFS, DEVFS) related option new-style.
...
This introduce an xxxFS_BOOT for each of the rootable filesystems.
(Presently not required, but encouraged to allow a smooth move of option *FS
to opt_dontuse.h later.)
LFS is temporarily disabled, and will be re-enabled tomorrow.
1998-01-24 02:54:56 +00:00
Poul-Henning Kamp
ab3f746966
In all such uses of struct buf: 's/b_un.b_addr/b_data/g'
1997-12-02 21:07:20 +00:00
KATO Takenori
b2bf5e1cfd
Synchronize with sys/i386/isa/fd.c revision 1.105.
1997-10-21 09:48:38 +00:00
KATO Takenori
09044baf2a
Synchronize with sys/i386/isa/fd.c revision 1.104.
1997-09-24 08:21:26 +00:00
KATO Takenori
e79c5cf3a8
Synchronize with sys/i386/isa/fd.c, isa.c and sio.c revisions 1.103,
...
1.105 and 1.183, respectively.
1997-09-22 12:23:49 +00:00
KATO Takenori
073e89f3e6
Synchronize with sys/i386/isa/fd.c revision 1.102.
1997-09-18 08:10:45 +00:00
KATO Takenori
61fd9882c1
Synchronize with sys/i386/conf/options.i386 and sys/i386/isa/fd.c
...
revisions 1.59 and 1.101, respectively.
1997-09-17 08:01:07 +00:00
KATO Takenori
062569821c
Synchronize with sys/i386/isa/fd.c, if_ed.c, if_fe.c, lpt.c, mse.c,
...
npx.c, isa.c, sio.c, syscons.c and wd.c revisions 1.100, 1.117, 1.29,
1.61, 1.33, 1.48, 1.95, 1.173, 1.226 and 1.132, respectively.
1997-07-21 13:11:16 +00:00
Bruce Evans
3a32c6706b
Don't include <sys/ioctl.h> in the kernel. Stage 9: same changes
...
in pc98 as in isa.
1997-03-24 12:29:48 +00:00
Bruce Evans
fe10481de8
Don't #include <sys/fcntl.h> in <sys/file.h> if KERNEL is defined.
...
Fixed everything that depended on getting fcntl.h stuff from the wrong
place. Most things don't depend on file.h stuff at all.
1997-03-23 03:49:00 +00:00
KATO Takenori
5db523b1d5
Fixed devfs code. Old code remained in pc98 tree.
...
Submitted by: URATA Shuichiro <s-urata@nmit.tmg.nec.co.jp>
1997-03-04 06:39:02 +00:00
Peter Wemm
6875d25465
Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are not
...
ready for it yet.
1997-02-22 09:48:43 +00:00
KATO Takenori
6ed46f82d8
Synchronize with Lite/2 commit: i386/i386/machdep.c, i386/i386/trap.c,
...
i386/isa/fd.c and i386/isa/wd.c revisions 1.227, 1.87, 1.96 and 1.123,
respectively.
1997-02-10 11:53:20 +00:00
KATO Takenori
15466e1892
Moved macros which are related to BIOS work area from pc98.h
...
(corresponds to isa.h) to pc98_machdep.h.
1997-02-07 19:07:43 +00:00
KATO Takenori
c59a3dbd01
- Changed retry count from 1000000 to 10000 (same as IBM-PC's).
...
- Deleted unnecessary DELAY().
- Deleted space character at the end of line.
1997-01-18 15:51:43 +00:00
Jordan K. Hubbard
1130b656e5
Make the long-awaited change from $Id$ to $FreeBSD$
...
This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.
Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.
1997-01-14 07:20:47 +00:00
KATO Takenori
a413ea0d8a
Synchronize with sys/i386/isa/fd.c revision 1.94 (disable disk
...
statistics support).
1996-12-19 08:17:08 +00:00
Satoshi Asami
f48465862b
Synchronize with the RELENG_2_2 branch.
...
Definite 2.2 candidate.
Submitted by: The FreeBSD(98) Development Team
1996-12-04 04:21:30 +00:00
Satoshi Asami
6b2f48440f
Re-sync with -current. Should be in 2.2.
...
Submitted by: The FreeBSD(98) Development Team
1996-11-09 00:39:59 +00:00