[OpenAFS] Re: 1.3.70 comments?

Horst Birthelmer horst@riback.net
Sun, 22 Aug 2004 14:12:12 +0200


On Aug 22, 2004, at 7:38 AM, Derrick J Brashear wrote:

> On Sun, 22 Aug 2004, Derrick J Brashear wrote:
>
>> On Fri, 20 Aug 2004, Derrick J Brashear wrote:
>>
>>> Only idea I can come up with is that I somehow screwed up rx_Init; 
>>> If so, checking out the cvs head by date (2 weeks ago) should work. 
>>> I reproduced the problem, but sadly my AIX machine is 20 miles away 
>>> and didn't bother to come back up.
>>
>> Nope. Horst did testing and found it's this change:
>> diff -u -r1.8 -r1.10
>> --- rxkad.p.h   15 Jul 2003 23:16:42 -0000      1.8
>> +++ rxkad.p.h   3 Apr 2004 07:59:53 -0000       1.10
>> @@ -16,7 +16,7 @@
>>                /* no ticket good for longer than 30 days */
>> #define MAXKTCTICKETLIFETIME (30*24*3600)
>> #define MINKTCTICKETLEN              32
>> -#define        MAXKTCTICKETLEN       344
>> +#define        MAXKTCTICKETLEN       12000 /* was 344 */
>> #define        MAXKTCNAMELEN         64        /* name & inst should 
>> be 256 */
>> #define MAXKTCREALMLEN       64        /* should be 256 */
>> #define KTC_TIME_UNCERTAINTY (15*60)   /* max skew bet. machines' 
>> clocks */
>>
>> i don't know what the problem is or how large we can go if that 
>> problem can be addressed, but currently on aix we cannot go to 12000.
>
> and, that's the klog problem, i don't know if it's related to the tab 
> completion problem.
>

I think it has to be since not the ticket insertion goes wrong but some 
calls afterwards are starting with bogus data... (sometimes 
uninitialized mutexes or things like that)
So one of this calls can be a tab which lists the current directory or 
whatever ...

Horst