diff options
author | Doug Rabson <dfr@FreeBSD.org> | 1998-06-07 17:13:14 +0000 |
---|---|---|
committer | Doug Rabson <dfr@FreeBSD.org> | 1998-06-07 17:13:14 +0000 |
commit | ecbb00a2629050fd720dc376a33c45f4ad767cea (patch) | |
tree | 1113fd99d363889650b503b7f993603f9423465a /sys/miscfs/procfs | |
parent | 37a8b7dcb8bdd78373c1d4afa4c423c119314e86 (diff) | |
download | src-ecbb00a2629050fd720dc376a33c45f4ad767cea.tar.gz src-ecbb00a2629050fd720dc376a33c45f4ad767cea.zip |
This commit fixes various 64bit portability problems required for
FreeBSD/alpha. The most significant item is to change the command
argument to ioctl functions from int to u_long. This change brings us
inline with various other BSD versions. Driver writers may like to
use (__FreeBSD_version == 300003) to detect this change.
The prototype FreeBSD/alpha machdep will follow in a couple of days
time.
Notes
Notes:
svn path=/head/; revision=36735
Diffstat (limited to 'sys/miscfs/procfs')
-rw-r--r-- | sys/miscfs/procfs/procfs_mem.c | 4 | ||||
-rw-r--r-- | sys/miscfs/procfs/procfs_vfsops.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/miscfs/procfs/procfs_mem.c b/sys/miscfs/procfs/procfs_mem.c index 29c883c1f6b1..27cb4f5205b2 100644 --- a/sys/miscfs/procfs/procfs_mem.c +++ b/sys/miscfs/procfs/procfs_mem.c @@ -37,7 +37,7 @@ * * @(#)procfs_mem.c 8.5 (Berkeley) 6/15/94 * - * $Id: procfs_mem.c,v 1.31 1998/04/17 22:36:55 des Exp $ + * $Id: procfs_mem.c,v 1.32 1998/05/19 00:00:14 tegge Exp $ */ /* @@ -159,7 +159,7 @@ procfs_rwmem(curp, p, uio) fill_eproc (p, &p->p_addr->u_kproc.kp_eproc); /* locate the in-core address */ - tkva = (u_int)p->p_addr + uva - VM_MAXUSER_ADDRESS; + tkva = (u_long)p->p_addr + uva - VM_MAXUSER_ADDRESS; /* transfer it */ error = uiomove((caddr_t)tkva, len, uio); diff --git a/sys/miscfs/procfs/procfs_vfsops.c b/sys/miscfs/procfs/procfs_vfsops.c index f75de093c165..0827be178f9f 100644 --- a/sys/miscfs/procfs/procfs_vfsops.c +++ b/sys/miscfs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.7 (Berkeley) 5/10/95 * - * $Id: procfs_vfsops.c,v 1.20 1998/03/01 22:46:22 msmith Exp $ + * $Id: procfs_vfsops.c,v 1.21 1998/05/06 05:29:36 msmith Exp $ */ /* @@ -75,7 +75,7 @@ procfs_mount(mp, path, data, ndp, p) struct nameidata *ndp; struct proc *p; { - u_int size; + size_t size; if (UIO_MX & (UIO_MX-1)) { log(LOG_ERR, "procfs: invalid directory entry size\n"); |