[BACK]Return to log_dump.c CVS log [TXT][DIR] Up to [Development] / xfs-cmds / xfsprogs / logprint

File: [Development] / xfs-cmds / xfsprogs / logprint / log_dump.c (download)

Revision 1.4, Mon Sep 8 06:18:43 2008 UTC (9 years, 1 month ago) by bnaujok.longdrop.melbourne.sgi.com
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +9 -9 lines

Update xfsprogs to latest kernel headers and functions
Merge of master-melb:xfs-cmds:32070a by kenmcd.

/*
 * 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 "logprint.h"

/*
 * Dump log blocks, not data
 */

void
xfs_log_dump(
	xlog_t			*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;
		}
	}
}