[DRBD-cvs] r1673 - in branches/drbd-0.7: . drbd user

svn at svn.drbd.org svn at svn.drbd.org
Fri Dec 10 13:48:31 CET 2004


Author: phil
Date: 2004-12-10 13:48:28 +0100 (Fri, 10 Dec 2004)
New Revision: 1673

Modified:
   branches/drbd-0.7/ChangeLog
   branches/drbd-0.7/drbd/Makefile-2.4
   branches/drbd-0.7/drbd/Makefile-2.6
   branches/drbd-0.7/user/drbd_limits.h
Log:
* updated Changelog
* increased max value for max-buffers
* made Makefiles to be gcc-2.95 compatible


Modified: branches/drbd-0.7/ChangeLog
===================================================================
--- branches/drbd-0.7/ChangeLog	2004-12-09 14:02:20 UTC (rev 1672)
+++ branches/drbd-0.7/ChangeLog	2004-12-10 12:48:28 UTC (rev 1673)
@@ -1,9 +1,22 @@
 Latest:
 ------
- ChangeLog last updated: r1661 2004-11-29
+ ChangeLog last updated: r1672 2004-12-10
  Cumulative changes since last tarball.
  For even more detail, use "svn log" and "svn diff".
 
+ * "drbdadm adjust [res...]" now does the calls to drbdsetup 
+   in an improved order, first the disk config of all devices,
+   then the syncer and net config last. With the old scheme
+   drbdadm run in a timeout when setting up more than about 
+   6 devices at once (startup script...).
+ * New progress indication in the startup script.
+ * Bugfix to a race that could cause a OOPS on a BUG() macro
+   in mod_timer while starting resync. The more devices you have 
+   the higher the probability to hit this race condition.
+ * Fixed a stupid typo in the range-check code, that was intoduced
+   in 0.7.6. Drbdsetup allowed "max-buffers" to be in the range 
+   from 32 to 32.
+
 0.7.6 (api:77/proto:74)
 -----
  * Fixed bug that could cause a lockup of the receiver and

Modified: branches/drbd-0.7/drbd/Makefile-2.4
===================================================================
--- branches/drbd-0.7/drbd/Makefile-2.4	2004-12-09 14:02:20 UTC (rev 1672)
+++ branches/drbd-0.7/drbd/Makefile-2.4	2004-12-10 12:48:28 UTC (rev 1673)
@@ -1,4 +1,4 @@
-CFLAGS_drbd_sizeof_sanity_check.o = -Wpadded # -Werror
+CFLAGS_drbd_sizeof_sanity_check.o = # -Wpadded # -Werror
 
 drbd-objs  :=	drbd_sizeof_sanity_check.o \
 		drbd_buildtag.o drbd_bitmap.o drbd_fs.o drbd_proc.o \

Modified: branches/drbd-0.7/drbd/Makefile-2.6
===================================================================
--- branches/drbd-0.7/drbd/Makefile-2.6	2004-12-09 14:02:20 UTC (rev 1672)
+++ branches/drbd-0.7/drbd/Makefile-2.6	2004-12-10 12:48:28 UTC (rev 1673)
@@ -1,4 +1,4 @@
-#CFLAGS_drbd_sizeof_sanity_check.o = -Wpadded # -Werror
+CFLAGS_drbd_sizeof_sanity_check.o = # -Wpadded # -Werror
 
 drbd-objs  :=	drbd_sizeof_sanity_check.o \
 		drbd_buildtag.o drbd_bitmap.o drbd_fs.o drbd_proc.o \

Modified: branches/drbd-0.7/user/drbd_limits.h
===================================================================
--- branches/drbd-0.7/user/drbd_limits.h	2004-12-09 14:02:20 UTC (rev 1672)
+++ branches/drbd-0.7/user/drbd_limits.h	2004-12-10 12:48:28 UTC (rev 1673)
@@ -50,7 +50,7 @@
   RANGE(SNDBUF_SIZE, 1, 10000000);
 
   /* arbitrary. */
-  RANGE(MAX_BUFFERS, 32, 5000);
+  RANGE(MAX_BUFFERS, 32, 10000);
 
   /* 0 is disabled.
    * 200 should be more than enough even for very short timeouts */



More information about the drbd-cvs mailing list