svn commit: r226935 - stable/8/sys/geom/part

Marius Strobl marius at FreeBSD.org
Sun Oct 30 12:23:04 UTC 2011


Author: marius
Date: Sun Oct 30 12:23:04 2011
New Revision: 226935
URL: http://svn.freebsd.org/changeset/base/226935

Log:
  MFC: r226522
  
  Allow to dump on Solaris swap partitions.
  
  PR:		161764
  Submitted by:	Peter Jeremy

Modified:
  stable/8/sys/geom/part/g_part_vtoc8.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/geom/part/g_part_vtoc8.c
==============================================================================
--- stable/8/sys/geom/part/g_part_vtoc8.c	Sun Oct 30 12:23:00 2011	(r226934)
+++ stable/8/sys/geom/part/g_part_vtoc8.c	Sun Oct 30 12:23:04 2011	(r226935)
@@ -271,7 +271,8 @@ g_part_vtoc8_dumpto(struct g_part_table 
 	 */
 	table = (struct g_part_vtoc8_table *)basetable;
 	tag = be16dec(&table->vtoc.part[entry->gpe_index - 1].tag);
-	return ((tag == 0 || tag == VTOC_TAG_FREEBSD_SWAP) ? 1 : 0);
+	return ((tag == 0 || tag == VTOC_TAG_FREEBSD_SWAP ||
+	    tag == VTOC_TAG_SWAP) ? 1 : 0);
 }
 
 static int


More information about the svn-src-all mailing list