Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-5]: src/sys/nfs Pull up revision 1.55 (requested by fvdl):



details:   https://anonhg.NetBSD.org/src/rev/b17af09c2859
branches:  netbsd-1-5
changeset: 490350:b17af09c2859
user:      he <he%NetBSD.org@localhost>
date:      Fri Dec 15 00:08:12 2000 +0000

description:
Pull up revision 1.55 (requested by fvdl):
  Fix NFS+tcp client hangs on server or network outage.  Again,
  please note that this introduces yet another kernel interface
  change: sobind() gains an argument.

diffstat:

 sys/nfs/nfs_boot.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 47f663a5fcd6 -r b17af09c2859 sys/nfs/nfs_boot.c
--- a/sys/nfs/nfs_boot.c        Thu Dec 14 23:56:27 2000 +0000
+++ b/sys/nfs/nfs_boot.c        Fri Dec 15 00:08:12 2000 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: nfs_boot.c,v 1.53 2000/03/29 03:43:33 simonb Exp $     */
+/*     $NetBSD: nfs_boot.c,v 1.53.4.1 2000/12/15 00:08:12 he Exp $     */
 
 /*-
  * Copyright (c) 1995, 1997 The NetBSD Foundation, Inc.
@@ -359,7 +359,7 @@
        sin->sin_family = AF_INET;
        sin->sin_addr.s_addr = INADDR_ANY;
        sin->sin_port = htons(port);
-       error = sobind(so, m);
+       error = sobind(so, m, curproc);
        m_freem(m);
        return (error);
 }



Home | Main Index | Thread Index | Old Index