summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2003-08-07 15:04:27 +0000
committerjhb <jhb@FreeBSD.org>2003-08-07 15:04:27 +0000
commit37641f86f1a209d796b3679ab72c92f2ace89fb7 (patch)
treed28ecab1cd6104f6189a11004e6d3615215cf931
parent450c201b698a84880b8cd2d816cbc526ddc72f4a (diff)
downloadFreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.zip
FreeBSD-src-37641f86f1a209d796b3679ab72c92f2ace89fb7.tar.gz
Consistently use the BSD u_int and u_short instead of the SYSV uint and
ushort. In most of these files, there was a mixture of both styles and this change just makes them self-consistent. Requested by: bde (kern_ktrace.c)
-rw-r--r--sys/boot/i386/libi386/biospnp.c2
-rw-r--r--sys/dev/aac/aacvar.h2
-rw-r--r--sys/dev/acpica/acpi_pcib_acpi.c2
-rw-r--r--sys/dev/dgb/dgreg.h80
-rw-r--r--sys/dev/digi/digi.c2
-rw-r--r--sys/dev/digi/digi.h6
-rw-r--r--sys/dev/digi/digireg.h72
-rw-r--r--sys/dev/ed/if_ed.c2
-rw-r--r--sys/dev/en/midwayvar.h2
-rw-r--r--sys/dev/fatm/if_fatmvar.h2
-rw-r--r--sys/dev/md/md.c8
-rw-r--r--sys/dev/pccbb/pccbb.c10
-rw-r--r--sys/dev/ppbus/ppbconf.h6
-rw-r--r--sys/dev/rc/rc.c2
-rw-r--r--sys/dev/snc/dp83932.c2
-rw-r--r--sys/fs/cd9660/cd9660_vfsops.c4
-rw-r--r--sys/fs/udf/udf_vfsops.c4
-rw-r--r--sys/ia64/ia64/mp_machdep.c2
-rw-r--r--sys/ia64/include/cpu.h2
-rw-r--r--sys/isofs/cd9660/cd9660_vfsops.c4
-rw-r--r--sys/kern/kern_kse.c2
-rw-r--r--sys/kern/kern_ktrace.c20
-rw-r--r--sys/kern/kern_thread.c2
-rw-r--r--sys/kern/sysv_shm.c4
-rw-r--r--sys/kern/vfs_subr.c2
-rw-r--r--sys/netinet/in_pcb.c2
-rw-r--r--sys/sys/namei.h2
-rw-r--r--sys/ufs/ffs/ffs_vnops.c2
28 files changed, 126 insertions, 126 deletions
diff --git a/sys/boot/i386/libi386/biospnp.c b/sys/boot/i386/libi386/biospnp.c
index 1bf5a22..611636d 100644
--- a/sys/boot/i386/libi386/biospnp.c
+++ b/sys/boot/i386/libi386/biospnp.c
@@ -263,7 +263,7 @@ biospnp_call(int func, const char *fmt, ...)
switch(*p) {
case 'w':
- i = va_arg(ap, uint);
+ i = va_arg(ap, u_int);
*(u_int16_t *)argp = i;
argp += sizeof(u_int16_t);
break;
diff --git a/sys/dev/aac/aacvar.h b/sys/dev/aac/aacvar.h
index e2314c6..6a07087 100644
--- a/sys/dev/aac/aacvar.h
+++ b/sys/dev/aac/aacvar.h
@@ -314,7 +314,7 @@ struct aac_softc
/* command/fib resources */
bus_dma_tag_t aac_fib_dmat; /* DMA tag for allocing FIBs */
TAILQ_HEAD(,aac_fibmap) aac_fibmap_tqh;
- uint total_fibs;
+ u_int total_fibs;
struct aac_command *aac_commands;
/* command management */
diff --git a/sys/dev/acpica/acpi_pcib_acpi.c b/sys/dev/acpica/acpi_pcib_acpi.c
index 7fca8be..ba6e42e 100644
--- a/sys/dev/acpica/acpi_pcib_acpi.c
+++ b/sys/dev/acpica/acpi_pcib_acpi.c
@@ -132,7 +132,7 @@ acpi_pcib_acpi_attach(device_t dev)
{
struct acpi_hpcib_softc *sc;
ACPI_STATUS status;
- uint addr, slot, func, busok;
+ u_int addr, slot, func, busok;
uint8_t busno;
ACPI_FUNCTION_TRACE((char *)(uintptr_t)__func__);
diff --git a/sys/dev/dgb/dgreg.h b/sys/dev/dgb/dgreg.h
index 8dcca02..0f8aea0 100644
--- a/sys/dev/dgb/dgreg.h
+++ b/sys/dev/dgb/dgreg.h
@@ -114,48 +114,48 @@ typedef struct digi_struct digi_t;
struct global_data {
- volatile ushort cin;
- volatile ushort cout;
- volatile ushort cstart;
- volatile ushort cmax;
- volatile ushort ein;
- volatile ushort eout;
- volatile ushort istart;
- volatile ushort imax;
+ volatile u_short cin;
+ volatile u_short cout;
+ volatile u_short cstart;
+ volatile u_short cmax;
+ volatile u_short ein;
+ volatile u_short eout;
+ volatile u_short istart;
+ volatile u_short imax;
};
struct board_chan {
int filler1;
int filler2;
- volatile ushort tseg;
- volatile ushort tin;
- volatile ushort tout;
- volatile ushort tmax;
+ volatile u_short tseg;
+ volatile u_short tin;
+ volatile u_short tout;
+ volatile u_short tmax;
- volatile ushort rseg;
- volatile ushort rin;
- volatile ushort rout;
- volatile ushort rmax;
+ volatile u_short rseg;
+ volatile u_short rin;
+ volatile u_short rout;
+ volatile u_short rmax;
- volatile ushort tlow;
- volatile ushort rlow;
- volatile ushort rhigh;
- volatile ushort incr;
+ volatile u_short tlow;
+ volatile u_short rlow;
+ volatile u_short rhigh;
+ volatile u_short incr;
- volatile ushort etime;
- volatile ushort edelay;
+ volatile u_short etime;
+ volatile u_short edelay;
volatile u_char *dev;
- volatile ushort iflag;
- volatile ushort oflag;
- volatile ushort cflag;
- volatile ushort gmask;
+ volatile u_short iflag;
+ volatile u_short oflag;
+ volatile u_short cflag;
+ volatile u_short gmask;
- volatile ushort col;
- volatile ushort delay;
- volatile ushort imask;
- volatile ushort tflush;
+ volatile u_short col;
+ volatile u_short delay;
+ volatile u_short imask;
+ volatile u_short tflush;
int filler3;
int filler4;
@@ -274,8 +274,8 @@ struct board_info {
u_char status;
u_char type;
u_char altpin;
- ushort numports;
- ushort port;
+ u_short numports;
+ u_short port;
u_long membase;
};
@@ -313,19 +313,19 @@ struct channel {
u_char fepstartca;
u_char txwin;
u_char rxwin;
- ushort fepiflag;
- ushort fepcflag;
- ushort fepoflag;
- ushort txbufhead;
- ushort txbufsize;
- ushort rxbufhead;
- ushort rxbufsize;
+ u_short fepiflag;
+ u_short fepcflag;
+ u_short fepoflag;
+ u_short txbufhead;
+ u_short txbufsize;
+ u_short rxbufhead;
+ u_short rxbufsize;
int close_delay;
int count;
int blocked_open;
int event;
int asyncflags;
- uint dev;
+ u_int dev;
long session;
long pgrp;
u_long statusflags;
diff --git a/sys/dev/digi/digi.c b/sys/dev/digi/digi.c
index 22f1b2e..8c3656b 100644
--- a/sys/dev/digi/digi.c
+++ b/sys/dev/digi/digi.c
@@ -1815,7 +1815,7 @@ fepcmd(struct digi_p *port, int cmd, int op1, int ncmds)
head = port->sc->gdata->cin;
mem[head + 0] = cmd;
mem[head + 1] = port->pnum;
- *(ushort *)(mem + head + 2) = op1;
+ *(u_short *)(mem + head + 2) = op1;
head = (head + 4) & port->sc->gdata->cmax;
port->sc->gdata->cin = head;
diff --git a/sys/dev/digi/digi.h b/sys/dev/digi/digi.h
index c5c1a4c..f0c9f0e 100644
--- a/sys/dev/digi/digi.h
+++ b/sys/dev/digi/digi.h
@@ -67,8 +67,8 @@ struct digi_p {
#define PAUSE_RX 16
int opencnt;
- ushort txbufsize;
- ushort rxbufsize;
+ u_short txbufsize;
+ u_short rxbufsize;
volatile struct board_chan *bc;
struct tty *tp;
@@ -151,7 +151,7 @@ struct digi_softc {
const char *name;
enum digi_board_status status;
- ushort numports; /* number of ports on card */
+ u_short numports; /* number of ports on card */
u_int port; /* I/O port */
u_int wport; /* window select I/O port */
diff --git a/sys/dev/digi/digireg.h b/sys/dev/digi/digireg.h
index 8de46b0..4a1641f 100644
--- a/sys/dev/digi/digireg.h
+++ b/sys/dev/digi/digireg.h
@@ -30,52 +30,52 @@
*/
struct global_data {
- volatile ushort cin;
- volatile ushort cout;
- volatile ushort cstart;
- volatile ushort cmax;
- volatile ushort ein;
- volatile ushort eout;
- volatile ushort istart;
- volatile ushort imax;
+ volatile u_short cin;
+ volatile u_short cout;
+ volatile u_short cstart;
+ volatile u_short cmax;
+ volatile u_short ein;
+ volatile u_short eout;
+ volatile u_short istart;
+ volatile u_short imax;
};
struct board_chan {
- volatile ushort tpjmp;
- volatile ushort tcjmp;
- volatile ushort fil1;
- volatile ushort rpjmp;
+ volatile u_short tpjmp;
+ volatile u_short tcjmp;
+ volatile u_short fil1;
+ volatile u_short rpjmp;
- volatile ushort tseg;
- volatile ushort tin;
- volatile ushort tout;
- volatile ushort tmax;
+ volatile u_short tseg;
+ volatile u_short tin;
+ volatile u_short tout;
+ volatile u_short tmax;
- volatile ushort rseg;
- volatile ushort rin;
- volatile ushort rout;
- volatile ushort rmax;
+ volatile u_short rseg;
+ volatile u_short rin;
+ volatile u_short rout;
+ volatile u_short rmax;
- volatile ushort tlow;
- volatile ushort rlow;
- volatile ushort rhigh;
- volatile ushort incr;
+ volatile u_short tlow;
+ volatile u_short rlow;
+ volatile u_short rhigh;
+ volatile u_short incr;
- volatile ushort dev;
- volatile ushort edelay;
- volatile ushort blen;
- volatile ushort btime;
+ volatile u_short dev;
+ volatile u_short edelay;
+ volatile u_short blen;
+ volatile u_short btime;
- volatile ushort iflag;
- volatile ushort oflag;
- volatile ushort cflag;
- volatile ushort gmask;
+ volatile u_short iflag;
+ volatile u_short oflag;
+ volatile u_short cflag;
+ volatile u_short gmask;
- volatile ushort col;
- volatile ushort delay;
- volatile ushort imask;
- volatile ushort tflush;
+ volatile u_short col;
+ volatile u_short delay;
+ volatile u_short imask;
+ volatile u_short tflush;
volatile u_char _1[16];
diff --git a/sys/dev/ed/if_ed.c b/sys/dev/ed/if_ed.c
index 06a1825..bcc4671 100644
--- a/sys/dev/ed/if_ed.c
+++ b/sys/dev/ed/if_ed.c
@@ -3153,7 +3153,7 @@ ed_hpp_write_mbufs(struct ed_softc *sc, struct mbuf *m, int dst)
/* finish the last word of the previous mbuf */
if (wantbyte) {
savebyte[1] = *data;
- *d = *((ushort *) savebyte);
+ *d = *((u_short *) savebyte);
data++; len--; wantbyte = 0;
}
/* output contiguous words */
diff --git a/sys/dev/en/midwayvar.h b/sys/dev/en/midwayvar.h
index 4869dbd..27da2f5 100644
--- a/sys/dev/en/midwayvar.h
+++ b/sys/dev/en/midwayvar.h
@@ -136,7 +136,7 @@ struct en_rxslot {
struct en_vcc {
struct atmio_vcc vcc; /* required by common code */
void *rxhand;
- uint vflags;
+ u_int vflags;
uint32_t ipackets;
uint32_t opackets;
uint32_t ibytes;
diff --git a/sys/dev/fatm/if_fatmvar.h b/sys/dev/fatm/if_fatmvar.h
index 57df041..8919d24 100644
--- a/sys/dev/fatm/if_fatmvar.h
+++ b/sys/dev/fatm/if_fatmvar.h
@@ -168,7 +168,7 @@ LIST_HEAD(rbuf_list, rbuf);
struct card_vcc {
struct atmio_vcc param; /* traffic parameters */
void *rxhand;
- uint vflags;
+ u_int vflags;
uint32_t ipackets;
uint32_t opackets;
uint32_t ibytes;
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c
index 8576bde..d79a4ac 100644
--- a/sys/dev/md/md.c
+++ b/sys/dev/md/md.c
@@ -132,9 +132,9 @@ static int nshift;
struct indir {
uintptr_t *array;
- uint total;
- uint used;
- uint shift;
+ u_int total;
+ u_int used;
+ u_int shift;
};
struct md_s {
@@ -174,7 +174,7 @@ struct md_s {
static int mddestroy(struct md_s *sc, struct thread *td);
static struct indir *
-new_indir(uint shift)
+new_indir(u_int shift)
{
struct indir *ip;
diff --git a/sys/dev/pccbb/pccbb.c b/sys/dev/pccbb/pccbb.c
index fe4c445..91a22d9 100644
--- a/sys/dev/pccbb/pccbb.c
+++ b/sys/dev/pccbb/pccbb.c
@@ -240,7 +240,7 @@ static int cbb_cardbus_deactivate_resource(device_t brdev,
device_t child, int type, int rid, struct resource *res);
static struct resource *cbb_cardbus_alloc_resource(device_t brdev,
device_t child, int type, int *rid, u_long start,
- u_long end, u_long count, uint flags);
+ u_long end, u_long count, u_int flags);
static int cbb_cardbus_release_resource(device_t brdev, device_t child,
int type, int rid, struct resource *res);
static int cbb_power_enable_socket(device_t brdev, device_t child);
@@ -251,7 +251,7 @@ static int cbb_deactivate_resource(device_t brdev, device_t child,
int type, int rid, struct resource *r);
static struct resource *cbb_alloc_resource(device_t brdev, device_t child,
int type, int *rid, u_long start, u_long end, u_long count,
- uint flags);
+ u_int flags);
static int cbb_release_resource(device_t brdev, device_t child,
int type, int rid, struct resource *r);
static int cbb_read_ivar(device_t brdev, device_t child, int which,
@@ -1515,7 +1515,7 @@ cbb_cardbus_deactivate_resource(device_t brdev, device_t child, int type,
static struct resource *
cbb_cardbus_alloc_resource(device_t brdev, device_t child, int type,
- int *rid, u_long start, u_long end, u_long count, uint flags)
+ int *rid, u_long start, u_long end, u_long count, u_int flags)
{
struct cbb_softc *sc = device_get_softc(brdev);
int tmp;
@@ -1663,7 +1663,7 @@ cbb_pcic_deactivate_resource(device_t brdev, device_t child, int type,
static struct resource *
cbb_pcic_alloc_resource(device_t brdev, device_t child, int type, int *rid,
- u_long start, u_long end, u_long count, uint flags)
+ u_long start, u_long end, u_long count, u_int flags)
{
struct resource *res = NULL;
struct cbb_softc *sc = device_get_softc(brdev);
@@ -1800,7 +1800,7 @@ cbb_deactivate_resource(device_t brdev, device_t child, int type,
static struct resource *
cbb_alloc_resource(device_t brdev, device_t child, int type, int *rid,
- u_long start, u_long end, u_long count, uint flags)
+ u_long start, u_long end, u_long count, u_int flags)
{
struct cbb_softc *sc = device_get_softc(brdev);
diff --git a/sys/dev/ppbus/ppbconf.h b/sys/dev/ppbus/ppbconf.h
index 96b7b1b..eb1f64e 100644
--- a/sys/dev/ppbus/ppbconf.h
+++ b/sys/dev/ppbus/ppbconf.h
@@ -187,10 +187,10 @@ struct ppb_device {
const char *name; /* name of the device */
- ushort mode; /* current mode of the device */
- ushort avm; /* available IEEE1284 modes of
+ u_short mode; /* current mode of the device */
+ u_short avm; /* available IEEE1284 modes of
* the device */
- uint flags; /* flags */
+ u_int flags; /* flags */
struct ppb_context ctx; /* context of the device */
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index aafb3fd..6817d02 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -1012,7 +1012,7 @@ rc_hardclose(struct rc_chans *rc)
/* Reset the bastard */
static void
-rc_hwreset(struct rc_softc *sc, uint chipid)
+rc_hwreset(struct rc_softc *sc, u_int chipid)
{
CCRCMD(sc, -1, CCR_HWRESET); /* Hardware reset */
DELAY(20000);
diff --git a/sys/dev/snc/dp83932.c b/sys/dev/snc/dp83932.c
index 58966ea..ec56e80 100644
--- a/sys/dev/snc/dp83932.c
+++ b/sys/dev/snc/dp83932.c
@@ -718,7 +718,7 @@ camdump(sc)
wbflush();
for (i = 0; i < 16; i++) {
- ushort ap2, ap1, ap0;
+ u_short ap2, ap1, ap0;
NIC_PUT(sc, SNCR_CEP, i);
wbflush();
ap2 = NIC_GET(sc, SNCR_CAP2);
diff --git a/sys/fs/cd9660/cd9660_vfsops.c b/sys/fs/cd9660/cd9660_vfsops.c
index 42455f0..8df32e0 100644
--- a/sys/fs/cd9660/cd9660_vfsops.c
+++ b/sys/fs/cd9660/cd9660_vfsops.c
@@ -620,8 +620,8 @@ cd9660_statfs(mp, sbp, td)
*/
struct ifid {
- ushort ifid_len;
- ushort ifid_pad;
+ u_short ifid_len;
+ u_short ifid_pad;
int ifid_ino;
long ifid_start;
};
diff --git a/sys/fs/udf/udf_vfsops.c b/sys/fs/udf/udf_vfsops.c
index f9cf3de..c8f7e49 100644
--- a/sys/fs/udf/udf_vfsops.c
+++ b/sys/fs/udf/udf_vfsops.c
@@ -647,8 +647,8 @@ udf_vget(struct mount *mp, ino_t ino, int flags, struct vnode **vpp)
}
struct ifid {
- ushort ifid_len;
- ushort ifid_pad;
+ u_short ifid_len;
+ u_short ifid_pad;
int ifid_ino;
long ifid_start;
};
diff --git a/sys/ia64/ia64/mp_machdep.c b/sys/ia64/ia64/mp_machdep.c
index eeab986..5de8c24 100644
--- a/sys/ia64/ia64/mp_machdep.c
+++ b/sys/ia64/ia64/mp_machdep.c
@@ -159,7 +159,7 @@ cpu_mp_probe()
}
void
-cpu_mp_add(uint acpiid, uint apicid, uint apiceid)
+cpu_mp_add(u_int acpiid, u_int apicid, u_int apiceid)
{
struct pcpu *pc;
u_int64_t lid;
diff --git a/sys/ia64/include/cpu.h b/sys/ia64/include/cpu.h
index e31968d..4924165 100644
--- a/sys/ia64/include/cpu.h
+++ b/sys/ia64/include/cpu.h
@@ -120,7 +120,7 @@ int ia64_count_cpus(void);
void map_gateway_page(void);
void map_pal_code(void);
void map_port_space(void);
-void cpu_mp_add(uint, uint, uint);
+void cpu_mp_add(u_int, u_int, u_int);
/*
* Return contents of in-cpu fast counter as a sort of "bogo-time"
diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c
index 42455f0..8df32e0 100644
--- a/sys/isofs/cd9660/cd9660_vfsops.c
+++ b/sys/isofs/cd9660/cd9660_vfsops.c
@@ -620,8 +620,8 @@ cd9660_statfs(mp, sbp, td)
*/
struct ifid {
- ushort ifid_len;
- ushort ifid_pad;
+ u_short ifid_len;
+ u_short ifid_pad;
int ifid_ino;
long ifid_start;
};
diff --git a/sys/kern/kern_kse.c b/sys/kern/kern_kse.c
index bf21150..8e16a8a 100644
--- a/sys/kern/kern_kse.c
+++ b/sys/kern/kern_kse.c
@@ -1165,7 +1165,7 @@ thread_update_usr_ticks(struct thread *td, int user)
struct kse_upcall *ku;
struct ksegrp *kg;
caddr_t addr;
- uint uticks;
+ u_int uticks;
if ((ku = td->td_upcall) == NULL)
return (-1);
diff --git a/sys/kern/kern_ktrace.c b/sys/kern/kern_ktrace.c
index ded99e9..469d378 100644
--- a/sys/kern/kern_ktrace.c
+++ b/sys/kern/kern_ktrace.c
@@ -98,10 +98,10 @@ static STAILQ_HEAD(, ktr_request) ktr_free;
SYSCTL_NODE(_kern, OID_AUTO, ktrace, CTLFLAG_RD, 0, "KTRACE options");
-static uint ktr_requestpool = KTRACE_REQUEST_POOL;
+static u_int ktr_requestpool = KTRACE_REQUEST_POOL;
TUNABLE_INT("kern.ktrace.request_pool", &ktr_requestpool);
-static uint ktr_geniosize = PAGE_SIZE;
+static u_int ktr_geniosize = PAGE_SIZE;
TUNABLE_INT("kern.ktrace.genio_size", &ktr_geniosize);
SYSCTL_UINT(_kern_ktrace, OID_AUTO, genio_size, CTLFLAG_RW, &ktr_geniosize,
0, "Maximum size of genio event payload");
@@ -112,7 +112,7 @@ static struct sema ktrace_sema;
static void ktrace_init(void *dummy);
static int sysctl_kern_ktrace_request_pool(SYSCTL_HANDLER_ARGS);
-static uint ktrace_resize_pool(uint newsize);
+static u_int ktrace_resize_pool(u_int newsize);
static struct ktr_request *ktr_getrequest(int type);
static void ktr_submitrequest(struct ktr_request *req);
static void ktr_freerequest(struct ktr_request *req);
@@ -144,7 +144,7 @@ static int
sysctl_kern_ktrace_request_pool(SYSCTL_HANDLER_ARGS)
{
struct thread *td;
- uint newsize, oldsize, wantsize;
+ u_int newsize, oldsize, wantsize;
int error;
/* Handle easy read-only case first to avoid warnings from GCC. */
@@ -152,10 +152,10 @@ sysctl_kern_ktrace_request_pool(SYSCTL_HANDLER_ARGS)
mtx_lock(&ktrace_mtx);
oldsize = ktr_requestpool;
mtx_unlock(&ktrace_mtx);
- return (SYSCTL_OUT(req, &oldsize, sizeof(uint)));
+ return (SYSCTL_OUT(req, &oldsize, sizeof(u_int)));
}
- error = SYSCTL_IN(req, &wantsize, sizeof(uint));
+ error = SYSCTL_IN(req, &wantsize, sizeof(u_int));
if (error)
return (error);
td = curthread;
@@ -165,7 +165,7 @@ sysctl_kern_ktrace_request_pool(SYSCTL_HANDLER_ARGS)
newsize = ktrace_resize_pool(wantsize);
mtx_unlock(&ktrace_mtx);
td->td_pflags &= ~TDP_INKTRACE;
- error = SYSCTL_OUT(req, &oldsize, sizeof(uint));
+ error = SYSCTL_OUT(req, &oldsize, sizeof(u_int));
if (error)
return (error);
if (newsize != wantsize)
@@ -175,8 +175,8 @@ sysctl_kern_ktrace_request_pool(SYSCTL_HANDLER_ARGS)
SYSCTL_PROC(_kern_ktrace, OID_AUTO, request_pool, CTLTYPE_UINT|CTLFLAG_RW,
&ktr_requestpool, 0, sysctl_kern_ktrace_request_pool, "IU", "");
-static uint
-ktrace_resize_pool(uint newsize)
+static u_int
+ktrace_resize_pool(u_int newsize)
{
struct ktr_request *req;
@@ -786,7 +786,7 @@ ktr_writerequest(struct ktr_request *req)
if (vp == NULL)
return;
kth = &req->ktr_header;
- datalen = data_lengths[(ushort)kth->ktr_type & ~KTR_DROP];
+ datalen = data_lengths[(u_short)kth->ktr_type & ~KTR_DROP];
buflen = kth->ktr_len;
cred = req->ktr_cred;
td = curthread;
diff --git a/sys/kern/kern_thread.c b/sys/kern/kern_thread.c
index bf21150..8e16a8a 100644
--- a/sys/kern/kern_thread.c
+++ b/sys/kern/kern_thread.c
@@ -1165,7 +1165,7 @@ thread_update_usr_ticks(struct thread *td, int user)
struct kse_upcall *ku;
struct ksegrp *kg;
caddr_t addr;
- uint uticks;
+ u_int uticks;
if ((ku = td->td_upcall) == NULL)
return (-1);
diff --git a/sys/kern/sysv_shm.c b/sys/kern/sysv_shm.c
index 4077b6b..a64c7f3 100644
--- a/sys/kern/sysv_shm.c
+++ b/sys/kern/sysv_shm.c
@@ -402,8 +402,8 @@ shmat(td, uap)
struct oshmid_ds {
struct ipc_perm shm_perm; /* operation perms */
int shm_segsz; /* size of segment (bytes) */
- ushort shm_cpid; /* pid, creator */
- ushort shm_lpid; /* pid, last operation */
+ u_short shm_cpid; /* pid, creator */
+ u_short shm_lpid; /* pid, last operation */
short shm_nattch; /* no. of current attaches */
time_t shm_atime; /* last attach time */
time_t shm_dtime; /* last detach time */
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c
index cf0f0fb..952d7ed 100644
--- a/sys/kern/vfs_subr.c
+++ b/sys/kern/vfs_subr.c
@@ -3640,7 +3640,7 @@ vn_isdisk(vp, errp)
void
NDFREE(ndp, flags)
struct nameidata *ndp;
- const uint flags;
+ const u_int flags;
{
if (!(flags & NDF_NO_FREE_PNBUF) &&
(ndp->ni_cnd.cn_flags & HASBUF)) {
diff --git a/sys/netinet/in_pcb.c b/sys/netinet/in_pcb.c
index 4f46ca6..dc52d89 100644
--- a/sys/netinet/in_pcb.c
+++ b/sys/netinet/in_pcb.c
@@ -365,7 +365,7 @@ in_pcbbind_setup(inp, nam, laddrp, lportp, td)
if (*lportp != 0)
lport = *lportp;
if (lport == 0) {
- ushort first, last;
+ u_short first, last;
int count;
if (laddr.s_addr != INADDR_ANY)
diff --git a/sys/sys/namei.h b/sys/sys/namei.h
index ae21e0d..a5d18d4 100644
--- a/sys/sys/namei.h
+++ b/sys/sys/namei.h
@@ -172,7 +172,7 @@ NDINIT(struct nameidata *ndp,
#define NDF_NO_FREE_PNBUF 0x00000020
#define NDF_ONLY_PNBUF (~NDF_NO_FREE_PNBUF)
-void NDFREE(struct nameidata *, const uint);
+void NDFREE(struct nameidata *, const u_int);
int namei(struct nameidata *ndp);
int lookup(struct nameidata *ndp);
diff --git a/sys/ufs/ffs/ffs_vnops.c b/sys/ufs/ffs/ffs_vnops.c
index 3157792..15480fe 100644
--- a/sys/ufs/ffs/ffs_vnops.c
+++ b/sys/ufs/ffs/ffs_vnops.c
@@ -1239,7 +1239,7 @@ ffs_extwrite(struct vnode *vp, struct uio *uio, int ioflag, struct ucred *ucred)
* the length of the EA, and possibly the pointer to the entry and to the data.
*/
static int
-ffs_findextattr(u_char *ptr, uint length, int nspace, const char *name, u_char **eap, u_char **eac)
+ffs_findextattr(u_char *ptr, u_int length, int nspace, const char *name, u_char **eap, u_char **eac)
{
u_char *p, *pe, *pn, *p0;
int eapad1, eapad2, ealength, ealen, nlen;
OpenPOWER on IntegriCloud