aboutsummaryrefslogtreecommitdiff
path: root/stand/libsa
diff options
context:
space:
mode:
Diffstat (limited to 'stand/libsa')
-rw-r--r--stand/libsa/arp.c2
-rw-r--r--stand/libsa/bootp.c2
-rw-r--r--stand/libsa/bootparam.c16
-rw-r--r--stand/libsa/dosfs.h12
-rw-r--r--stand/libsa/ext2fs.c138
-rw-r--r--stand/libsa/net.h2
-rw-r--r--stand/libsa/rpc.c24
7 files changed, 98 insertions, 98 deletions
diff --git a/stand/libsa/arp.c b/stand/libsa/arp.c
index bcc697a2f97d..3d298fff2058 100644
--- a/stand/libsa/arp.c
+++ b/stand/libsa/arp.c
@@ -164,7 +164,7 @@ arprecv(struct iodesc *d, void **pkt, void **payload, time_t tleft, void *extra)
{
ssize_t n;
struct ether_arp *ah;
- u_int16_t etype; /* host order */
+ uint16_t etype; /* host order */
void *ptr;
#ifdef ARP_DEBUG
diff --git a/stand/libsa/bootp.c b/stand/libsa/bootp.c
index 3e85441cece3..e8a89b40c93f 100644
--- a/stand/libsa/bootp.c
+++ b/stand/libsa/bootp.c
@@ -190,7 +190,7 @@ bootp(int sock)
#ifdef SUPPORT_DHCP
if(dhcp_ok) {
- u_int32_t leasetime;
+ uint32_t leasetime;
bp->bp_vend[6] = DHCPREQUEST;
bp->bp_vend[7] = TAG_REQ_ADDR;
bp->bp_vend[8] = 4;
diff --git a/stand/libsa/bootparam.c b/stand/libsa/bootparam.c
index 1de2d53d77fe..30e109e75742 100644
--- a/stand/libsa/bootparam.c
+++ b/stand/libsa/bootparam.c
@@ -77,7 +77,7 @@ n_short bp_server_port; /* net order */
* (Note, really four ints, NOT chars. Blech.)
*/
struct xdr_inaddr {
- u_int32_t atype;
+ uint32_t atype;
int32_t addr[4];
};
@@ -108,16 +108,16 @@ bp_whoami(int sockfd)
{
/* RPC structures for PMAPPROC_CALLIT */
struct args {
- u_int32_t prog;
- u_int32_t vers;
- u_int32_t proc;
- u_int32_t arglen;
+ uint32_t prog;
+ uint32_t vers;
+ uint32_t proc;
+ uint32_t arglen;
struct xdr_inaddr xina;
} *args;
struct repl {
- u_int16_t _pad;
- u_int16_t port;
- u_int32_t encap_len;
+ uint16_t _pad;
+ uint16_t port;
+ uint32_t encap_len;
/* encapsulated data here */
n_long capsule[64];
} *repl;
diff --git a/stand/libsa/dosfs.h b/stand/libsa/dosfs.h
index 5b11e0fc375a..30bb43534492 100644
--- a/stand/libsa/dosfs.h
+++ b/stand/libsa/dosfs.h
@@ -47,12 +47,12 @@
* Macros to convert DOS-format 16-bit and 32-bit quantities
*/
-#define cv2(p) ((u_int16_t)(p)[0] | \
- ((u_int16_t)(p)[1] << 010))
-#define cv4(p) ((u_int32_t)(p)[0] | \
- ((u_int32_t)(p)[1] << 010) | \
- ((u_int32_t)(p)[2] << 020) | \
- ((u_int32_t)(p)[3] << 030))
+#define cv2(p) ((uint16_t)(p)[0] | \
+ ((uint16_t)(p)[1] << 010))
+#define cv4(p) ((uint32_t)(p)[0] | \
+ ((uint32_t)(p)[1] << 010) | \
+ ((uint32_t)(p)[2] << 020) | \
+ ((uint32_t)(p)[3] << 030))
/*
* Directory, filesystem, and file structures.
diff --git a/stand/libsa/ext2fs.c b/stand/libsa/ext2fs.c
index 348fdecc5c11..068e307253a9 100644
--- a/stand/libsa/ext2fs.c
+++ b/stand/libsa/ext2fs.c
@@ -152,7 +152,7 @@ struct fs_ops ext2fs_fsops = {
#define ino_to_bo(fs, ino) (ino_to_bgo(fs, ino) % (fs)->fs_ipb)
#define nindir(fs) \
- ((fs)->fs_bsize / sizeof(u_int32_t))
+ ((fs)->fs_bsize / sizeof(uint32_t))
#define lblkno(fs, loc) /* loc / bsize */ \
((loc) >> (fs)->fs_bshift)
#define smalllblktosize(fs, blk) /* blk * bsize */ \
@@ -170,45 +170,45 @@ struct fs_ops ext2fs_fsops = {
* superblock describing ext2fs
*/
struct ext2fs_disk {
- u_int32_t fd_inodes; /* # of inodes */
- u_int32_t fd_blocks; /* # of blocks */
- u_int32_t fd_resblk; /* # of reserved blocks */
- u_int32_t fd_freeblk; /* # of free blocks */
- u_int32_t fd_freeino; /* # of free inodes */
- u_int32_t fd_firstblk; /* first data block */
- u_int32_t fd_bsize; /* block size */
- u_int32_t fd_fsize; /* frag size */
- u_int32_t fd_bpg; /* blocks per group */
- u_int32_t fd_fpg; /* frags per group */
- u_int32_t fd_ipg; /* inodes per group */
- u_int32_t fd_mtime; /* mount time */
- u_int32_t fd_wtime; /* write time */
- u_int16_t fd_mount; /* # of mounts */
+ uint32_t fd_inodes; /* # of inodes */
+ uint32_t fd_blocks; /* # of blocks */
+ uint32_t fd_resblk; /* # of reserved blocks */
+ uint32_t fd_freeblk; /* # of free blocks */
+ uint32_t fd_freeino; /* # of free inodes */
+ uint32_t fd_firstblk; /* first data block */
+ uint32_t fd_bsize; /* block size */
+ uint32_t fd_fsize; /* frag size */
+ uint32_t fd_bpg; /* blocks per group */
+ uint32_t fd_fpg; /* frags per group */
+ uint32_t fd_ipg; /* inodes per group */
+ uint32_t fd_mtime; /* mount time */
+ uint32_t fd_wtime; /* write time */
+ uint16_t fd_mount; /* # of mounts */
int16_t fd_maxmount; /* max # of mounts */
- u_int16_t fd_magic; /* magic number */
- u_int16_t fd_state; /* state */
- u_int16_t fd_eflag; /* error flags */
- u_int16_t fd_mnrrev; /* minor revision */
- u_int32_t fd_lastchk; /* last check */
- u_int32_t fd_chkintvl; /* maximum check interval */
- u_int32_t fd_os; /* os */
- u_int32_t fd_revision; /* revision */
- u_int16_t fd_uid; /* uid for reserved blocks */
- u_int16_t fd_gid; /* gid for reserved blocks */
-
- u_int32_t fd_firstino; /* first non-reserved inode */
- u_int16_t fd_isize; /* inode size */
- u_int16_t fd_nblkgrp; /* block group # of superblock */
- u_int32_t fd_fcompat; /* compatible features */
- u_int32_t fd_fincompat; /* incompatible features */
- u_int32_t fd_frocompat; /* read-only compatibilties */
- u_int8_t fd_uuid[16]; /* volume uuid */
+ uint16_t fd_magic; /* magic number */
+ uint16_t fd_state; /* state */
+ uint16_t fd_eflag; /* error flags */
+ uint16_t fd_mnrrev; /* minor revision */
+ uint32_t fd_lastchk; /* last check */
+ uint32_t fd_chkintvl; /* maximum check interval */
+ uint32_t fd_os; /* os */
+ uint32_t fd_revision; /* revision */
+ uint16_t fd_uid; /* uid for reserved blocks */
+ uint16_t fd_gid; /* gid for reserved blocks */
+
+ uint32_t fd_firstino; /* first non-reserved inode */
+ uint16_t fd_isize; /* inode size */
+ uint16_t fd_nblkgrp; /* block group # of superblock */
+ uint32_t fd_fcompat; /* compatible features */
+ uint32_t fd_fincompat; /* incompatible features */
+ uint32_t fd_frocompat; /* read-only compatibilties */
+ uint8_t fd_uuid[16]; /* volume uuid */
char fd_volname[16]; /* volume name */
char fd_fsmnt[64]; /* name last mounted on */
- u_int32_t fd_bitmap; /* compression bitmap */
+ uint32_t fd_bitmap; /* compression bitmap */
- u_int8_t fd_nblkpa; /* # of blocks to preallocate */
- u_int8_t fd_ndblkpa; /* # of dir blocks to preallocate */
+ uint8_t fd_nblkpa; /* # of blocks to preallocate */
+ uint8_t fd_ndblkpa; /* # of dir blocks to preallocate */
};
struct ext2fs_core {
@@ -251,39 +251,39 @@ struct ext2fs {
};
struct ext2blkgrp {
- u_int32_t bg_blkmap; /* block bitmap */
- u_int32_t bg_inomap; /* inode bitmap */
- u_int32_t bg_inotbl; /* inode table */
- u_int16_t bg_nfblk; /* # of free blocks */
- u_int16_t bg_nfino; /* # of free inodes */
- u_int16_t bg_ndirs; /* # of dirs */
+ uint32_t bg_blkmap; /* block bitmap */
+ uint32_t bg_inomap; /* inode bitmap */
+ uint32_t bg_inotbl; /* inode table */
+ uint16_t bg_nfblk; /* # of free blocks */
+ uint16_t bg_nfino; /* # of free inodes */
+ uint16_t bg_ndirs; /* # of dirs */
char bg_pad[14];
};
struct ext2dinode {
- u_int16_t di_mode; /* mode */
- u_int16_t di_uid; /* uid */
- u_int32_t di_size; /* byte size */
- u_int32_t di_atime; /* access time */
- u_int32_t di_ctime; /* creation time */
- u_int32_t di_mtime; /* modification time */
- u_int32_t di_dtime; /* deletion time */
- u_int16_t di_gid; /* gid */
- u_int16_t di_nlink; /* link count */
- u_int32_t di_nblk; /* block count */
- u_int32_t di_flags; /* file flags */
-
- u_int32_t di_osdep1; /* os dependent stuff */
-
- u_int32_t di_db[EXT2_NDADDR]; /* direct blocks */
- u_int32_t di_ib[EXT2_NIADDR]; /* indirect blocks */
- u_int32_t di_version; /* version */
- u_int32_t di_facl; /* file acl */
- u_int32_t di_dacl; /* dir acl */
- u_int32_t di_faddr; /* fragment addr */
-
- u_int8_t di_frag; /* fragment number */
- u_int8_t di_fsize; /* fragment size */
+ uint16_t di_mode; /* mode */
+ uint16_t di_uid; /* uid */
+ uint32_t di_size; /* byte size */
+ uint32_t di_atime; /* access time */
+ uint32_t di_ctime; /* creation time */
+ uint32_t di_mtime; /* modification time */
+ uint32_t di_dtime; /* deletion time */
+ uint16_t di_gid; /* gid */
+ uint16_t di_nlink; /* link count */
+ uint32_t di_nblk; /* block count */
+ uint32_t di_flags; /* file flags */
+
+ uint32_t di_osdep1; /* os dependent stuff */
+
+ uint32_t di_db[EXT2_NDADDR]; /* direct blocks */
+ uint32_t di_ib[EXT2_NIADDR]; /* indirect blocks */
+ uint32_t di_version; /* version */
+ uint32_t di_facl; /* file acl */
+ uint32_t di_dacl; /* dir acl */
+ uint32_t di_faddr; /* fragment addr */
+
+ uint8_t di_frag; /* fragment number */
+ uint8_t di_fsize; /* fragment size */
char di_pad[10];
@@ -293,10 +293,10 @@ struct ext2dinode {
#define EXT2_MAXNAMLEN 255
struct ext2dirent {
- u_int32_t d_ino; /* inode */
- u_int16_t d_reclen; /* directory entry length */
- u_int8_t d_namlen; /* name length */
- u_int8_t d_type; /* file type */
+ uint32_t d_ino; /* inode */
+ uint16_t d_reclen; /* directory entry length */
+ uint8_t d_namlen; /* name length */
+ uint8_t d_type; /* file type */
char d_name[EXT2_MAXNAMLEN];
};
diff --git a/stand/libsa/net.h b/stand/libsa/net.h
index 5bb1ac57f9e8..b1b1277f52de 100644
--- a/stand/libsa/net.h
+++ b/stand/libsa/net.h
@@ -40,7 +40,7 @@
#define _STAND_NET_H
#ifndef _KERNEL /* XXX - see <netinet/in.h> */
#undef __IPADDR
-#define __IPADDR(x) htonl((u_int32_t)(x))
+#define __IPADDR(x) htonl((uint32_t)(x))
#endif
#include "iodesc.h"
diff --git a/stand/libsa/rpc.c b/stand/libsa/rpc.c
index f757f9590984..0f011e13a309 100644
--- a/stand/libsa/rpc.c
+++ b/stand/libsa/rpc.c
@@ -63,7 +63,7 @@ __FBSDID("$FreeBSD$");
struct auth_info {
int32_t authtype; /* auth type */
- u_int32_t authlen; /* auth length */
+ uint32_t authlen; /* auth length */
};
struct auth_unix {
@@ -75,23 +75,23 @@ struct auth_unix {
};
struct rpc_call {
- u_int32_t rp_xid; /* request transaction id */
+ uint32_t rp_xid; /* request transaction id */
int32_t rp_direction; /* call direction (0) */
- u_int32_t rp_rpcvers; /* rpc version (2) */
- u_int32_t rp_prog; /* program */
- u_int32_t rp_vers; /* version */
- u_int32_t rp_proc; /* procedure */
+ uint32_t rp_rpcvers; /* rpc version (2) */
+ uint32_t rp_prog; /* program */
+ uint32_t rp_vers; /* version */
+ uint32_t rp_proc; /* procedure */
};
struct rpc_reply {
- u_int32_t rp_xid; /* request transaction id */
+ uint32_t rp_xid; /* request transaction id */
int32_t rp_direction; /* call direction (1) */
int32_t rp_astatus; /* accept status (0: accepted) */
union {
- u_int32_t rpu_errno;
+ uint32_t rpu_errno;
struct {
struct auth_info rok_auth;
- u_int32_t rok_status;
+ uint32_t rok_status;
} rpu_rok;
} rp_u;
};
@@ -283,10 +283,10 @@ rpc_fromaddr(void *pkt, struct in_addr *addr, u_short *port)
n_long ip_src;
n_long ip_dst;
/* UDP header: */
- u_int16_t uh_sport; /* source port */
- u_int16_t uh_dport; /* destination port */
+ uint16_t uh_sport; /* source port */
+ uint16_t uh_dport; /* destination port */
int16_t uh_ulen; /* udp length */
- u_int16_t uh_sum; /* udp checksum */
+ uint16_t uh_sum; /* udp checksum */
/* RPC reply header: */
struct rpc_reply rpc;
} *hhdr;