Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 195785
b: refs/heads/master
c: e6b1f27
h: refs/heads/master
i:
  195783: 78c8a30
v: v3
  • Loading branch information
Christoph Hellwig authored and Alex Elder committed May 19, 2010
1 parent 2e841fd commit 124a2ca
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 55b66332d0921146a914d5d75a7b870a65dc4938
refs/heads/master: e6b1f27370fc67ac9868b2dbe2c22bc26952900e
46 changes: 19 additions & 27 deletions trunk/fs/xfs/xfs_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@

kmem_zone_t *xfs_log_ticket_zone;

#define xlog_write_adv_cnt(ptr, len, off, bytes) \
{ (ptr) += (bytes); \
(len) -= (bytes); \
(off) += (bytes);}

/* Local miscellaneous function prototypes */
STATIC int xlog_commit_record(struct log *log, struct xlog_ticket *ticket,
xlog_in_core_t **, xfs_lsn_t *);
Expand Down Expand Up @@ -100,7 +95,7 @@ STATIC xlog_ticket_t *xlog_ticket_alloc(xlog_t *log,
uint flags);

#if defined(DEBUG)
STATIC void xlog_verify_dest_ptr(xlog_t *log, __psint_t ptr);
STATIC void xlog_verify_dest_ptr(xlog_t *log, char *ptr);
STATIC void xlog_verify_grant_head(xlog_t *log, int equals);
STATIC void xlog_verify_iclog(xlog_t *log, xlog_in_core_t *iclog,
int count, boolean_t syncing);
Expand Down Expand Up @@ -1683,11 +1678,9 @@ xlog_write_calc_vec_length(
*/
static int
xlog_write_start_rec(
__psint_t ptr,
struct xlog_op_header *ophdr,
struct xlog_ticket *ticket)
{
struct xlog_op_header *ophdr = (struct xlog_op_header *)ptr;

if (!(ticket->t_flags & XLOG_TIC_INITED))
return 0;

Expand All @@ -1705,12 +1698,10 @@ xlog_write_start_rec(
static xlog_op_header_t *
xlog_write_setup_ophdr(
struct log *log,
__psint_t ptr,
struct xlog_op_header *ophdr,
struct xlog_ticket *ticket,
uint flags)
{
struct xlog_op_header *ophdr = (struct xlog_op_header *)ptr;

ophdr->oh_tid = cpu_to_be32(ticket->t_tid);
ophdr->oh_clientid = ticket->t_clientid;
ophdr->oh_res2 = 0;
Expand Down Expand Up @@ -1917,7 +1908,7 @@ xlog_write(
lv = log_vector;
vecp = lv->lv_iovecp;
while (lv && index < lv->lv_niovecs) {
__psint_t ptr;
void *ptr;
int log_offset;

error = xlog_state_get_iclog_space(log, len, &iclog, ticket,
Expand All @@ -1926,7 +1917,7 @@ xlog_write(
return error;

ASSERT(log_offset <= iclog->ic_size - 1);
ptr = (__psint_t)((char *)iclog->ic_datap + log_offset);
ptr = iclog->ic_datap + log_offset;

/* start_lsn is the first lsn written to. That's all we need. */
if (!*start_lsn)
Expand All @@ -1944,20 +1935,20 @@ xlog_write(
int copy_off;

ASSERT(reg->i_len % sizeof(__int32_t) == 0);
ASSERT((__psint_t)ptr % 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) {
record_cnt++;
xlog_write_adv_cnt(ptr, len, log_offset,
xlog_write_adv_cnt(&ptr, &len, &log_offset,
start_rec_copy);
}

ophdr = xlog_write_setup_ophdr(log, ptr, ticket, flags);
if (!ophdr)
return XFS_ERROR(EIO);

xlog_write_adv_cnt(ptr, len, log_offset,
xlog_write_adv_cnt(&ptr, &len, &log_offset,
sizeof(struct xlog_op_header));

len += xlog_write_setup_copy(ticket, ophdr,
Expand All @@ -1970,9 +1961,8 @@ xlog_write(

/* copy region */
ASSERT(copy_len >= 0);
memcpy((xfs_caddr_t)ptr, reg->i_addr + copy_off,
copy_len);
xlog_write_adv_cnt(ptr, len, log_offset, copy_len);
memcpy(ptr, reg->i_addr + copy_off, copy_len);
xlog_write_adv_cnt(&ptr, &len, &log_offset, copy_len);

copy_len += start_rec_copy + sizeof(xlog_op_header_t);
record_cnt++;
Expand Down Expand Up @@ -3454,20 +3444,22 @@ xlog_ticket_alloc(
* part of the log in case we trash the log structure.
*/
void
xlog_verify_dest_ptr(xlog_t *log,
__psint_t ptr)
xlog_verify_dest_ptr(
struct log *log,
char *ptr)
{
int i;
int good_ptr = 0;

for (i=0; i < log->l_iclog_bufs; i++) {
if (ptr >= (__psint_t)log->l_iclog_bak[i] &&
ptr <= (__psint_t)log->l_iclog_bak[i]+log->l_iclog_size)
for (i = 0; i < log->l_iclog_bufs; i++) {
if (ptr >= log->l_iclog_bak[i] &&
ptr <= log->l_iclog_bak[i] + log->l_iclog_size)
good_ptr++;
}
if (! good_ptr)

if (!good_ptr)
xlog_panic("xlog_verify_dest_ptr: invalid ptr");
} /* xlog_verify_dest_ptr */
}

STATIC void
xlog_verify_grant_head(xlog_t *log, int equals)
Expand Down
8 changes: 8 additions & 0 deletions trunk/fs/xfs/xfs_log_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,14 @@ extern void xlog_pack_data(xlog_t *log, xlog_in_core_t *iclog, int);

extern kmem_zone_t *xfs_log_ticket_zone;

static inline void
xlog_write_adv_cnt(void **ptr, int *len, int *off, size_t bytes)
{
*ptr += bytes;
*len -= bytes;
*off += bytes;
}

/*
* Unmount record type is used as a pseudo transaction type for the ticket.
* It's value must be outside the range of XFS_TRANS_* values.
Expand Down

0 comments on commit 124a2ca

Please sign in to comment.