aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/amr
diff options
context:
space:
mode:
authorJulian Elischer <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
committerJulian Elischer <julian@FreeBSD.org>2001-09-12 08:38:13 +0000
commitb40ce4165d5eb3a5de1515245055350ae3dbab8e (patch)
treeb1a19fcdf05759281fab0d89efb13f0fdf42102e /sys/dev/amr
parent9b36a30ee46a7766f269fe832ef3a2daa2ec04f0 (diff)
downloadsrc-b40ce4165d5eb3a5de1515245055350ae3dbab8e.tar.gz
src-b40ce4165d5eb3a5de1515245055350ae3dbab8e.zip
KSE Milestone 2
Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
Notes
Notes: svn path=/head/; revision=83366
Diffstat (limited to 'sys/dev/amr')
-rw-r--r--sys/dev/amr/amr.c6
-rw-r--r--sys/dev/amr/amr_disk.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/amr/amr.c b/sys/dev/amr/amr.c
index a8be1369b1dd..2b5eca1622ff 100644
--- a/sys/dev/amr/amr.c
+++ b/sys/dev/amr/amr.c
@@ -340,7 +340,7 @@ amr_submit_bio(struct amr_softc *sc, struct bio *bio)
* Accept an open operation on the control device.
*/
int
-amr_open(dev_t dev, int flags, int fmt, struct proc *p)
+amr_open(dev_t dev, int flags, int fmt, struct thread *td)
{
int unit = minor(dev);
struct amr_softc *sc = devclass_get_softc(amr_devclass, unit);
@@ -355,7 +355,7 @@ amr_open(dev_t dev, int flags, int fmt, struct proc *p)
* Accept the last close on the control device.
*/
int
-amr_close(dev_t dev, int flags, int fmt, struct proc *p)
+amr_close(dev_t dev, int flags, int fmt, struct thread *td)
{
int unit = minor(dev);
struct amr_softc *sc = devclass_get_softc(amr_devclass, unit);
@@ -370,7 +370,7 @@ amr_close(dev_t dev, int flags, int fmt, struct proc *p)
* Handle controller-specific control operations.
*/
int
-amr_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct proc *p)
+amr_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td)
{
struct amr_softc *sc = (struct amr_softc *)dev->si_drv1;
int *arg = (int *)addr;
diff --git a/sys/dev/amr/amr_disk.c b/sys/dev/amr/amr_disk.c
index e6f016a9bad3..38784d37218b 100644
--- a/sys/dev/amr/amr_disk.c
+++ b/sys/dev/amr/amr_disk.c
@@ -100,7 +100,7 @@ static driver_t amrd_driver = {
DRIVER_MODULE(amrd, amr, amrd_driver, amrd_devclass, 0, 0);
static int
-amrd_open(dev_t dev, int flags, int fmt, struct proc *p)
+amrd_open(dev_t dev, int flags, int fmt, struct thread *td)
{
struct amrd_softc *sc = (struct amrd_softc *)dev->si_drv1;
struct disklabel *label;
@@ -129,7 +129,7 @@ amrd_open(dev_t dev, int flags, int fmt, struct proc *p)
}
static int
-amrd_close(dev_t dev, int flags, int fmt, struct proc *p)
+amrd_close(dev_t dev, int flags, int fmt, struct thread *td)
{
struct amrd_softc *sc = (struct amrd_softc *)dev->si_drv1;
@@ -142,7 +142,7 @@ amrd_close(dev_t dev, int flags, int fmt, struct proc *p)
}
static int
-amrd_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct proc *p)
+amrd_ioctl(dev_t dev, u_long cmd, caddr_t addr, int32_t flag, struct thread *td)
{
return (ENOTTY);