[52] in arla-drinkers
Re: fs does not work?
daemon@ATHENA.MIT.EDU (Artur Grabowski)
Thu Jun 25 07:50:26 1998
From arla-drinkers-request@sundance.stacken.kth.se Thu Jun 25 11:50:25 1998
Return-Path: <arla-drinkers-request@sundance.stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 25062 invoked from network); 25 Jun 1998 11:50:23 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 25 Jun 1998 11:50:23 -0000
Received: from nest.stacken.kth.se (root@nest.stacken.kth.se [130.237.234.60])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id LAA10327;
Thu, 25 Jun 1998 11:13:11 +0200 (MET DST)
Received: (from art@localhost)
by nest.stacken.kth.se (8.8.7/8.8.7) id LAA11826;
Thu, 25 Jun 1998 11:10:18 +0200 (CEST)
Sender: art@stacken.kth.se
To: Naomaru Itoi <itoi@eecs.umich.edu>
Cc: Love <lha@stacken.kth.se>, arla-drinkers@stacken.kth.se
Subject: Re: fs does not work?
References: <199806242214.SAA28923@soso.eecs.umich.edu>
From: Artur Grabowski <art@stacken.kth.se>
Date: 25 Jun 1998 11:10:17 +0200
In-Reply-To: Naomaru Itoi's message of Wed, 24 Jun 1998 18:14:01 -0400
Message-ID: <lub90ml4zk6.fsf@nest.stacken.kth.se>
Lines: 24
X-Mailer: Gnus v5.3/Emacs 19.34
Naomaru Itoi <itoi@eecs.umich.edu> writes:
>
> > If you look k_hasafs() in ${kth-krb}/lib/kafs/afssys.c you'll
> > see the syscall.
> >
> > Make sure that its 210 that is the AFSSYSCALL. Run the
>
> Yeah, that's what's I was looking at just now.
> It turned out that AFS_SYSCALL is undefined.
>
> I see this in afssysdefs.h:
>
> #if defined(__NetBSD__)
> #define AFS_SYSCALL 210
> #endif
>
> So I guess I should set __NetBSD__ flag somewhere?
Nope. i guess you have an old libkafs. That line should read:
#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
//art