svn commit: r265336 - head/sys/geom/part

Andrey V. Elsukov ae at FreeBSD.org
Sun May 4 20:00:09 UTC 2014


Author: ae
Date: Sun May  4 20:00:08 2014
New Revision: 265336
URL: http://svnweb.freebsd.org/changeset/base/265336

Log:
  Add an advice what to do when partition was automatically resized.
  
  X-MFC after:	r256690

Modified:
  head/sys/geom/part/g_part.c

Modified: head/sys/geom/part/g_part.c
==============================================================================
--- head/sys/geom/part/g_part.c	Sun May  4 18:15:07 2014	(r265335)
+++ head/sys/geom/part/g_part.c	Sun May  4 20:00:08 2014	(r265336)
@@ -2065,8 +2065,10 @@ g_part_resize(struct g_consumer *cp)
 		table->gpt_opened = 1;
 	}
 	if (G_PART_RESIZE(table, NULL, NULL) == 0)
-		printf("GEOM_PART: %s was automatically resized\n",
-		    cp->geom->name);
+		printf("GEOM_PART: %s was automatically resized.\n"
+		    "  Use `gpart commit %s` to save changes or "
+		    "`gpart undo %s` to revert them.\n", cp->geom->name,
+		    cp->geom->name, cp->geom->name);
 	if (g_part_check_integrity(table, cp) != 0) {
 		g_access(cp, -1, -1, -1);
 		table->gpt_opened = 0;


More information about the svn-src-all mailing list