xfs: remove double-underscore integer types
This is a purely mechanical patch that removes the private __{u,}int{8,16,32,64}_t typedefs in favor of using the system {u,}int{8,16,32,64}_t typedefs. This is the sed script used to perform the transformation and fix the resulting whitespace and indentation errors: s/typedef\t__uint8_t/typedef __uint8_t\t/g s/typedef\t__uint/typedef __uint/g s/typedef\t__int\([0-9]*\)_t/typedef int\1_t\t/g s/__uint8_t\t/__uint8_t\t\t/g s/__uint/uint/g s/__int\([0-9]*\)_t\t/__int\1_t\t\t/g s/__int/int/g /^typedef.*int[0-9]*_t;$/d Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Christoph Hellwig <hch@lst.de>
This commit is contained in:
@@ -434,7 +434,7 @@ xfs_log_reserve(
|
||||
int unit_bytes,
|
||||
int cnt,
|
||||
struct xlog_ticket **ticp,
|
||||
__uint8_t client,
|
||||
uint8_t client,
|
||||
bool permanent)
|
||||
{
|
||||
struct xlog *log = mp->m_log;
|
||||
@@ -825,9 +825,9 @@ xfs_log_unmount_write(xfs_mount_t *mp)
|
||||
if (!error) {
|
||||
/* the data section must be 32 bit size aligned */
|
||||
struct {
|
||||
__uint16_t magic;
|
||||
__uint16_t pad1;
|
||||
__uint32_t pad2; /* may as well make it 64 bits */
|
||||
uint16_t magic;
|
||||
uint16_t pad1;
|
||||
uint32_t pad2; /* may as well make it 64 bits */
|
||||
} magic = {
|
||||
.magic = XLOG_UNMOUNT_TYPE,
|
||||
};
|
||||
@@ -1665,7 +1665,7 @@ xlog_cksum(
|
||||
char *dp,
|
||||
int size)
|
||||
{
|
||||
__uint32_t crc;
|
||||
uint32_t crc;
|
||||
|
||||
/* first generate the crc for the record header ... */
|
||||
crc = xfs_start_cksum_update((char *)rhead,
|
||||
@@ -1828,7 +1828,7 @@ xlog_sync(
|
||||
*/
|
||||
dptr = (char *)&iclog->ic_header + count;
|
||||
for (i = 0; i < split; i += BBSIZE) {
|
||||
__uint32_t cycle = be32_to_cpu(*(__be32 *)dptr);
|
||||
uint32_t cycle = be32_to_cpu(*(__be32 *)dptr);
|
||||
if (++cycle == XLOG_HEADER_MAGIC_NUM)
|
||||
cycle++;
|
||||
*(__be32 *)dptr = cpu_to_be32(cycle);
|
||||
@@ -2412,8 +2412,8 @@ xlog_write(
|
||||
}
|
||||
|
||||
reg = &vecp[index];
|
||||
ASSERT(reg->i_len % sizeof(__int32_t) == 0);
|
||||
ASSERT((unsigned long)ptr % sizeof(__int32_t) == 0);
|
||||
ASSERT(reg->i_len % sizeof(int32_t) == 0);
|
||||
ASSERT((unsigned long)ptr % sizeof(int32_t) == 0);
|
||||
|
||||
start_rec_copy = xlog_write_start_rec(ptr, ticket);
|
||||
if (start_rec_copy) {
|
||||
@@ -3192,7 +3192,7 @@ xlog_state_switch_iclogs(
|
||||
/* Round up to next log-sunit */
|
||||
if (xfs_sb_version_haslogv2(&log->l_mp->m_sb) &&
|
||||
log->l_mp->m_sb.sb_logsunit > 1) {
|
||||
__uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
|
||||
uint32_t sunit_bb = BTOBB(log->l_mp->m_sb.sb_logsunit);
|
||||
log->l_curr_block = roundup(log->l_curr_block, sunit_bb);
|
||||
}
|
||||
|
||||
@@ -3820,7 +3820,7 @@ xlog_verify_iclog(
|
||||
xlog_in_core_2_t *xhdr;
|
||||
void *base_ptr, *ptr, *p;
|
||||
ptrdiff_t field_offset;
|
||||
__uint8_t clientid;
|
||||
uint8_t clientid;
|
||||
int len, i, j, k, op_len;
|
||||
int idx;
|
||||
|
||||
|
Reference in New Issue
Block a user