Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 Jun 2005 00:07:53 GMT
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 78836 for review
Message-ID:  <200506230007.j5N07rbZ081991@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=78836

Change 78836 by peter@peter_melody on 2005/06/23 00:07:34

	Partition too small is far more informative than
	** DUMP FAILED (ERROR 28) **

Affected files ...

.. //depot/projects/hammer/sys/amd64/amd64/dump_machdep.c#16 edit

Differences ...

==== //depot/projects/hammer/sys/amd64/amd64/dump_machdep.c#16 (text+ko) ====

@@ -378,6 +378,8 @@
 
 	if (error == ECANCELED)
 		printf("\nDump aborted\n");
+	else if (error == ENOSPC)
+		printf("\nDump failed. Partition too small.\n");
 	else
 		printf("\n** DUMP FAILED (ERROR %d) **\n", error);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200506230007.j5N07rbZ081991>