summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1996-03-19 15:03:00 +0000
committerbde <bde@FreeBSD.org>1996-03-19 15:03:00 +0000
commit450b4c5cf434f35a45a1ff9dd6fc634fd777d712 (patch)
tree832a264c27be21f32c4604bbdcf83739414789f3 /sys
parent16bb0803c0e2d0d807e6eebb114f9e6c95637034 (diff)
downloadFreeBSD-src-450b4c5cf434f35a45a1ff9dd6fc634fd777d712.zip
FreeBSD-src-450b4c5cf434f35a45a1ff9dd6fc634fd777d712.tar.gz
Fixed unsigned longs that should have been vm_offset_t.
vm_offset_t is currently unsigned long but should probably be plain unsigned for i386's to match the choice of minimal types to represent for fixed-width types in Lite2. Anyway, it shouldn't be assumed to be unsigned long. I only fixed the type mismatches that were detected when I changed vm_offset_t to unsigned. Only pointer type mismatches were detected.
Diffstat (limited to 'sys')
-rw-r--r--sys/compat/linux/linux_misc.c8
-rw-r--r--sys/dev/pci/pcivar.h4
-rw-r--r--sys/i386/linux/imgact_linux.c8
-rw-r--r--sys/i386/linux/linux_misc.c8
-rw-r--r--sys/kern/imgact_aout.c5
-rw-r--r--sys/kern/imgact_gzip.c4
-rw-r--r--sys/pci/meteor.c2
-rw-r--r--sys/pci/ncr.c7
-rw-r--r--sys/pci/pcivar.h4
9 files changed, 29 insertions, 21 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c
index c78b6b9..6f8ec9e 100644
--- a/sys/compat/linux/linux_misc.c
+++ b/sys/compat/linux/linux_misc.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_misc.c,v 1.15 1996/03/10 23:25:17 peter Exp $
+ * $Id: linux_misc.c,v 1.16 1996/03/12 06:20:14 peter Exp $
*/
#include <sys/param.h>
@@ -165,8 +165,10 @@ linux_uselib(struct proc *p, struct linux_uselib_args *args, int *retval)
struct vnode *vp;
struct exec *a_out;
struct vattr attr;
- unsigned long vmaddr, file_offset;
- unsigned long buffer, bss_size;
+ vm_offset_t vmaddr;
+ unsigned long file_offset;
+ vm_offset_t buffer;
+ unsigned long bss_size;
char *ptr;
int error;
caddr_t sg;
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index d693459..4f4a29f 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcivar.h,v 1.8 1996/01/23 21:47:17 se Exp $
+** $Id: pcivar.h,v 1.9 1996/01/25 18:32:00 se Exp $
**
** Declarations for pci device drivers.
**
@@ -187,7 +187,7 @@ struct pci_externalize_buffer {
**-----------------------------------------------------------------
*/
-int pci_map_mem (pcici_t tag, u_long entry, u_long * va, u_long * pa);
+int pci_map_mem (pcici_t tag, u_long entry, vm_offset_t *va, vm_offset_t *pa);
/*-----------------------------------------------------------------
**
diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c
index 8967a6a2..fa83d52 100644
--- a/sys/i386/linux/imgact_linux.c
+++ b/sys/i386/linux/imgact_linux.c
@@ -28,7 +28,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: imgact_linux.c,v 1.11 1996/03/10 23:25:17 peter Exp $
+ * $Id: imgact_linux.c,v 1.12 1996/03/12 06:20:16 peter Exp $
*/
#include <sys/param.h>
@@ -61,8 +61,10 @@ exec_linux_imgact(imgp)
{
struct exec *a_out = (struct exec *) imgp->image_header;
struct vmspace *vmspace = imgp->proc->p_vmspace;
- unsigned long vmaddr, virtual_offset, file_offset;
- unsigned long buffer, bss_size;
+ vm_offset_t vmaddr;
+ unsigned long virtual_offset, file_offset;
+ vm_offset_t buffer;
+ unsigned long bss_size;
int error;
if (((a_out->a_magic >> 16) & 0xff) != 0x64)
diff --git a/sys/i386/linux/linux_misc.c b/sys/i386/linux/linux_misc.c
index c78b6b9..6f8ec9e 100644
--- a/sys/i386/linux/linux_misc.c
+++ b/sys/i386/linux/linux_misc.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: linux_misc.c,v 1.15 1996/03/10 23:25:17 peter Exp $
+ * $Id: linux_misc.c,v 1.16 1996/03/12 06:20:14 peter Exp $
*/
#include <sys/param.h>
@@ -165,8 +165,10 @@ linux_uselib(struct proc *p, struct linux_uselib_args *args, int *retval)
struct vnode *vp;
struct exec *a_out;
struct vattr attr;
- unsigned long vmaddr, file_offset;
- unsigned long buffer, bss_size;
+ vm_offset_t vmaddr;
+ unsigned long file_offset;
+ vm_offset_t buffer;
+ unsigned long bss_size;
char *ptr;
int error;
caddr_t sg;
diff --git a/sys/kern/imgact_aout.c b/sys/kern/imgact_aout.c
index b369df1..3bef3e7 100644
--- a/sys/kern/imgact_aout.c
+++ b/sys/kern/imgact_aout.c
@@ -28,7 +28,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: imgact_aout.c,v 1.23 1996/03/02 19:38:06 peter Exp $
+ * $Id: imgact_aout.c,v 1.24 1996/03/03 20:06:53 peter Exp $
*/
#include <sys/param.h>
@@ -57,7 +57,8 @@ exec_aout_imgact(imgp)
{
struct exec *a_out = (struct exec *) imgp->image_header;
struct vmspace *vmspace = imgp->proc->p_vmspace;
- unsigned long vmaddr, virtual_offset;
+ vm_offset_t vmaddr;
+ unsigned long virtual_offset;
unsigned long file_offset;
unsigned long bss_size;
int error;
diff --git a/sys/kern/imgact_gzip.c b/sys/kern/imgact_gzip.c
index 08da3f3..528887b 100644
--- a/sys/kern/imgact_gzip.c
+++ b/sys/kern/imgact_gzip.c
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id: imgact_gzip.c,v 1.18 1996/01/19 03:57:56 dyson Exp $
+ * $Id: imgact_gzip.c,v 1.19 1996/02/13 14:16:36 phk Exp $
*
* This module handles execution of a.out files which have been run through
* "gzip". This saves diskspace, but wastes cpu-cycles and VM.
@@ -136,7 +136,7 @@ do_aout_hdr(struct imgact_gzip * gz)
{
int error;
struct vmspace *vmspace = gz->ip->proc->p_vmspace;
- u_long vmaddr;
+ vm_offset_t vmaddr;
/*
* Set file/virtual offset based on a.out variant. We do two cases:
diff --git a/sys/pci/meteor.c b/sys/pci/meteor.c
index 6059566..afb37dd 100644
--- a/sys/pci/meteor.c
+++ b/sys/pci/meteor.c
@@ -885,7 +885,7 @@ met_attach(pcici_t tag, int unit)
mtr = &meteor[unit];
mtr->tag = tag;
- pci_map_mem(tag, PCI_MAP_REG_START, (u_long *)&mtr->base,
+ pci_map_mem(tag, PCI_MAP_REG_START, (vm_offset_t *)&mtr->base,
&mtr->phys_base);
#ifdef METEOR_IRQ /* from the configuration file */
diff --git a/sys/pci/ncr.c b/sys/pci/ncr.c
index cf1f878..9147bd4 100644
--- a/sys/pci/ncr.c
+++ b/sys/pci/ncr.c
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: ncr.c,v 1.66 1996/03/11 19:25:58 se Exp $
+** $Id: ncr.c,v 1.67 1996/03/11 19:36:07 se Exp $
**
** Device driver for the NCR 53C810 PCI-SCSI-Controller.
**
@@ -1220,7 +1220,8 @@ static void ncb_profile (ncb_p np, ccb_p cp);
static void ncr_script_copy_and_bind
(struct script * script, ncb_p np);
static void ncr_script_fill (struct script * scr);
-static int ncr_scatter (struct dsb* phys,u_long vaddr,u_long datalen);
+static int ncr_scatter (struct dsb* phys, vm_offset_t vaddr,
+ vm_size_t datalen);
static void ncr_setmaxtags (tcb_p tp, u_long usrtags);
static void ncr_setsync (ncb_p np, ccb_p cp, u_char sxfer);
static void ncr_settags (tcb_p tp, lcb_p lp);
@@ -1253,7 +1254,7 @@ static void ncr_attach (pcici_t tag, int unit);
static char ident[] =
- "\n$Id: ncr.c,v 1.66 1996/03/11 19:25:58 se Exp $\n";
+ "\n$Id: ncr.c,v 1.67 1996/03/11 19:36:07 se Exp $\n";
static u_long ncr_version = NCR_VERSION * 11
+ (u_long) sizeof (struct ncb) * 7
diff --git a/sys/pci/pcivar.h b/sys/pci/pcivar.h
index d693459..4f4a29f 100644
--- a/sys/pci/pcivar.h
+++ b/sys/pci/pcivar.h
@@ -1,6 +1,6 @@
/**************************************************************************
**
-** $Id: pcivar.h,v 1.8 1996/01/23 21:47:17 se Exp $
+** $Id: pcivar.h,v 1.9 1996/01/25 18:32:00 se Exp $
**
** Declarations for pci device drivers.
**
@@ -187,7 +187,7 @@ struct pci_externalize_buffer {
**-----------------------------------------------------------------
*/
-int pci_map_mem (pcici_t tag, u_long entry, u_long * va, u_long * pa);
+int pci_map_mem (pcici_t tag, u_long entry, vm_offset_t *va, vm_offset_t *pa);
/*-----------------------------------------------------------------
**
OpenPOWER on IntegriCloud