[48] in arla-drinkers
Re: fs does not work?
daemon@ATHENA.MIT.EDU (Love Hörnquist-Åstrand)
Wed Jun 24 18:29:48 1998
From arla-drinkers-request@sundance.stacken.kth.se Wed Jun 24 22:29:46 1998
Return-Path: <arla-drinkers-request@sundance.stacken.kth.se>
Delivered-To: arla-drinkers-mtg@bloom-picayune.mit.edu
Received: (qmail 15915 invoked from network); 24 Jun 1998 22:29:44 -0000
Received: from unknown (HELO sundance.stacken.kth.se) (130.237.234.41)
by bloom-picayune.mit.edu with SMTP; 24 Jun 1998 22:29:44 -0000
Received: from elixir.e.kth.se (sendmail@elixir.e.kth.se [130.237.48.5])
by sundance.stacken.kth.se (8.8.8/8.8.8) with ESMTP id AAA06848;
Thu, 25 Jun 1998 00:25:08 +0200 (MET DST)
Received: from zafir.e.kth.se (zafir.e.kth.se [130.237.48.6])
by elixir.e.kth.se (8.8.7/8.8.7) with ESMTP id AAA22374;
Thu, 25 Jun 1998 00:25:08 +0200 (MET DST)
Received: (e96_lho@localhost) by zafir.e.kth.se (8.8.7/8.6.6) id AAA14851; Thu, 25 Jun 1998 00:25:06 +0200 (MET DST)
Sender: e96_lho@elixir.e.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>
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
From: lha@stacken.kth.se (Love Hörnquist-Åstrand)
Date: 25 Jun 1998 00:25:06 +0200
In-Reply-To: Naomaru Itoi's message of Wed, 24 Jun 1998 18:14:01 -0400
Message-ID: <yxb2af72l9od.fsf@zafir.e.kth.se>
Lines: 49
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?
Ah, you use kth-krb 0.9.8, that is the problem since it thinks
that you dont have afs support at all and always returns
that there is no afs if I remember right.
The tiny diffrens between 0.9.8 and 0.9.9 make a diffrens.
--- 0.9.8/src/lib/kafs/afssysdefs.h Thu Oct 23 09:51:41 1997
+++ 0.9.9/src/lib/kafs/afssysdefs.h Tue Jan 6 04:25:05 1998
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*/
+/* $Id: afssysdefs.h,v 1.16 1997/10/23 07:51:41 assar Exp $ */
-/* $Id: afssysdefs.h,v 1.18 1998/01/06 03:25:05 assar Exp $ */
/*
* This section is for machines using single entry point AFS syscalls!
@@ -79,7 +79,7 @@
#define AFS_SYSCALL 31
#endif
-#if defined(__NetBSD__)
+#if defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD__)
#define AFS_SYSCALL 210
#endif
Guess that you should use 0.9.9 (ftp://ftp.nada.kth.se/pub/krb/src/)
Love