blob: 2bccb50fc95f7b8a733c27e311eaa6d0a0e382ae [file] [log] [blame]
/*
* Copyright (c) 2004-2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it would be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "libxfs.h"
#include "libxlog.h"
#include "logprint.h"
/*
* Dump log blocks, not data
*/
void
xfs_log_dump(
struct xlog *log,
int fd,
int print_block_start)
{
int r;
uint last_cycle = -1;
xfs_daddr_t blkno, dupblkno;
xlog_rec_header_t *hdr;
char buf[XLOG_HEADER_SIZE];
dupblkno = 0;
hdr = (xlog_rec_header_t *)buf;
xlog_print_lseek(log, fd, 0, SEEK_SET);
for (blkno = 0; blkno < log->l_logBBsize; blkno++) {
r = read(fd, buf, sizeof(buf));
if (r < 0) {
fprintf(stderr, _("%s: read error (%lld): %s\n"),
__FUNCTION__, (long long)blkno,
strerror(errno));
continue;
} else if (r == 0) {
printf(_("%s: physical end of log at %lld\n"),
__FUNCTION__, (long long)blkno);
break;
}
if (CYCLE_LSN(be64_to_cpu(*(__be64 *)buf)) ==
XLOG_HEADER_MAGIC_NUM && !print_no_data) {
printf(_(
"%6lld HEADER Cycle %d tail %d:%06d len %6d ops %d\n"),
(long long)blkno,
be32_to_cpu(hdr->h_cycle),
CYCLE_LSN(be64_to_cpu(hdr->h_tail_lsn)),
BLOCK_LSN(be64_to_cpu(hdr->h_tail_lsn)),
be32_to_cpu(hdr->h_len),
be32_to_cpu(hdr->h_num_logops));
}
if (xlog_get_cycle(buf) != last_cycle) {
printf(_(
"[%05lld - %05lld] Cycle 0x%08x New Cycle 0x%08x\n"),
(long long)dupblkno, (long long)blkno,
last_cycle, xlog_get_cycle(buf));
last_cycle = xlog_get_cycle(buf);
dupblkno = blkno;
}
}
}