Module Name:    src
Committed By:   reinoud
Date:           Wed Dec 22 12:15:02 UTC 2010

Modified Files:
        src/sys/fs/udf: udf_allocation.c

Log Message:
Growing the metadata partition is not yet implemented. Be so kind to report
this as unimplemented when the debug flag asks for it!


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/fs/udf/udf_allocation.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/fs/udf/udf_allocation.c
diff -u src/sys/fs/udf/udf_allocation.c:1.29 src/sys/fs/udf/udf_allocation.c:1.30
--- src/sys/fs/udf/udf_allocation.c:1.29	Fri Feb 26 09:57:39 2010
+++ src/sys/fs/udf/udf_allocation.c	Wed Dec 22 12:15:02 2010
@@ -1,4 +1,4 @@
-/* $NetBSD: udf_allocation.c,v 1.29 2010/02/26 09:57:39 reinoud Exp $ */
+/* $NetBSD: udf_allocation.c,v 1.30 2010/12/22 12:15:02 reinoud Exp $ */
 
 /*
  * Copyright (c) 2006, 2008 Reinoud Zandijk
@@ -28,7 +28,7 @@
 
 #include <sys/cdefs.h>
 #ifndef lint
-__KERNEL_RCSID(0, "$NetBSD: udf_allocation.c,v 1.29 2010/02/26 09:57:39 reinoud Exp $");
+__KERNEL_RCSID(0, "$NetBSD: udf_allocation.c,v 1.30 2010/12/22 12:15:02 reinoud Exp $");
 #endif /* not lint */
 
 
@@ -1608,6 +1608,7 @@
 		/* try to grow the meta partition */
 		DPRINTF(RESERVE, ("\ttrying to grow the meta partition\n"));
 		/* as per [UDF 2.60/2.2.13.5] : extend bitmap and metadata file(s) */
+		DPRINTF(NOTIMPL, ("\tgrowing meta partition not implemented yet\n"));
 	} else {
 		/* try to shrink the metadata partition */
 		DPRINTF(RESERVE, ("\ttrying to shrink the meta partition\n"));

Reply via email to