[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.3, Fri Nov 11 14:27:22 2005 UTC (11 years, 11 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.2: +12 -26 lines

Update copyright/license notices to match SGI legal prefered boilerplate.
Merge of master-melb:xfs-cmds:24374a 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(INT_GET(*(xfs_lsn_t *)buf, ARCH_CONVERT)) ==
				XLOG_HEADER_MAGIC_NUM && !print_no_data) {
			printf(
		"%6lld HEADER Cycle %d tail %d:%06d len %6d ops %d\n",
				(long long)blkno,
				INT_GET(hdr->h_cycle, ARCH_CONVERT),
				CYCLE_LSN(INT_GET(hdr->h_tail_lsn, ARCH_CONVERT)),
				BLOCK_LSN(INT_GET(hdr->h_tail_lsn, ARCH_CONVERT)),
				INT_GET(hdr->h_len, ARCH_CONVERT),
				INT_GET(hdr->h_num_logops, ARCH_CONVERT));
		}

		if (GET_CYCLE(buf, ARCH_CONVERT) != last_cycle) {
			printf(
		"[%05lld - %05lld] Cycle 0x%08x New Cycle 0x%08x\n",
				(long long)dupblkno, (long long)blkno,
				last_cycle, GET_CYCLE(buf, ARCH_CONVERT));
			last_cycle = GET_CYCLE(buf, ARCH_CONVERT);
			dupblkno = blkno;
		}
	}
}