Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-9]: src/sys/arch/hp300/stand Pull up following revision(s) (reque...
details: https://anonhg.NetBSD.org/src/rev/3d1de44b6532
branches: netbsd-9
changeset: 932167:3d1de44b6532
user: martin <martin%NetBSD.org@localhost>
date: Fri May 01 11:53:07 2020 +0000
description:
Pull up following revision(s) (requested by tsutsui in ticket #880):
sys/arch/hp300/stand/uboot/version: revision 1.21
sys/arch/hp300/stand/inst/version: revision 1.14
sys/arch/hp300/stand/common/netio.c: revision 1.17
Fix inappropriate error messages when nfs_mount() fails.
Noticed by Chris Hanson and his HP332 and confirmed on my HP425e.
Also bump revisions to denote visible changes.
Worth to pull up to netbsd-9.
diffstat:
sys/arch/hp300/stand/common/netio.c | 8 ++++----
sys/arch/hp300/stand/inst/version | 3 ++-
sys/arch/hp300/stand/uboot/version | 3 ++-
3 files changed, 8 insertions(+), 6 deletions(-)
diffs (56 lines):
diff -r 114080f304bc -r 3d1de44b6532 sys/arch/hp300/stand/common/netio.c
--- a/sys/arch/hp300/stand/common/netio.c Fri May 01 07:29:03 2020 +0000
+++ b/sys/arch/hp300/stand/common/netio.c Fri May 01 11:53:07 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netio.c,v 1.16 2016/06/11 06:20:11 dholland Exp $ */
+/* $NetBSD: netio.c,v 1.16.22.1 2020/05/01 11:53:08 martin Exp $ */
/*-
* Copyright (c) 1996, 1997 The NetBSD Foundation, Inc.
@@ -158,7 +158,6 @@
int
netmountroot(struct open_file *f, char *devname)
{
- int error;
struct iodesc *d;
#ifdef DEBUG
@@ -260,7 +259,8 @@
do_nfs_mount:
/* Get the NFS file handle (mount). */
- error = nfs_mount(netdev_sock, rootip, rootpath);
+ if (nfs_mount(netdev_sock, rootip, rootpath))
+ return errno;
- return error;
+ return 0;
}
diff -r 114080f304bc -r 3d1de44b6532 sys/arch/hp300/stand/inst/version
--- a/sys/arch/hp300/stand/inst/version Fri May 01 07:29:03 2020 +0000
+++ b/sys/arch/hp300/stand/inst/version Fri May 01 11:53:07 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.13 2016/01/17 08:05:20 tsutsui Exp $
+$NetBSD: version,v 1.13.22.1 2020/05/01 11:53:08 martin Exp $
1.1: Initial version
1.2: Added support for HP-IB cartridge tapes
@@ -13,3 +13,4 @@
1.11: Add support for framebuffers on HP362 and HP382.
1.12: Add and fix support for HP425e mcclock, sti framebuffer, apci and dnkbd.
1.13: Disable slow gunzip CRC32 calculation.
+1.14: Fix wrong errno when nfs_mount() fails.
diff -r 114080f304bc -r 3d1de44b6532 sys/arch/hp300/stand/uboot/version
--- a/sys/arch/hp300/stand/uboot/version Fri May 01 07:29:03 2020 +0000
+++ b/sys/arch/hp300/stand/uboot/version Fri May 01 11:53:07 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: version,v 1.20 2016/01/17 08:05:20 tsutsui Exp $
+$NetBSD: version,v 1.20.22.1 2020/05/01 11:53:07 martin Exp $
1.1: Initial version
1.2: Added support for network booting
@@ -20,3 +20,4 @@
1.18: Add support for framebuffers on HP362 and HP382.
1.19: Add and fix support for HP425e mcclock, sti framebuffer, apci and dnkbd.
1.20: Disable slow gunzip CRC32 calculation.
+1.21: Fix wrong errno when nfs_mount() fails.
Home |
Main Index |
Thread Index |
Old Index