| home | help | back | first | fref | pref | prev | next | nref | lref | last | post |
Message-Id: <200008011701.NAA02910@HOTASS-3.MIT.EDU>
To: moiradev@MIT.EDU
Date: Tue, 01 Aug 2000 13:01:44 -0400
From: Camilla R Fox <cfox@MIT.EDU>
The bug moira's been spewing about today is where it loops over
$j = 2*$total - $used - $alloc;
@max = ($asrv,$apart,$j) if (! @max || $j > $max[2])
looking for a partition that's small enough. No partition gets chosen.
$j will be proportional to partition size, so we don't need to grow it
by more than an order of magnitude.
I'm going to pull the fix onto the server, for now, to make the
incrementals stop failing.
Index: moira/incremental/afs/afs_utils.pl
===================================================================
RCS file: /mit/moiradev/repository/moira/incremental/afs/afs_utils.pl,v
retrieving revision 1.1
diff -r1.1 afs_utils.pl
85c85
< local(@max) = ("", "", -10000000);
---
> local(@max) = ("", "", -100000000);
| home | help | back | first | fref | pref | prev | next | nref | lref | last | post |