Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-6]: src/sys/fs/puffs Pull up following revision(s) (requested by ...
details: https://anonhg.NetBSD.org/src/rev/47cea4f0bb96
branches: netbsd-6
changeset: 776781:47cea4f0bb96
user: msaitoh <msaitoh%NetBSD.org@localhost>
date: Sun Nov 09 07:50:12 2014 +0000
description:
Pull up following revision(s) (requested by manu in ticket #1184):
sys/fs/puffs/puffs_vnops.c: revision 1.195
According to pooka@'s comment, a long time ago, VOP_STRATEGY could not
fail without taking down the kernel. It seems this is not the case
anymore,
hence we can stop dropping errors in puffs_vnop_strategy()
Approved by pooka@
diffstat:
sys/fs/puffs/puffs_vnops.c | 11 ++---------
1 files changed, 2 insertions(+), 9 deletions(-)
diffs (32 lines):
diff -r 781043842362 -r 47cea4f0bb96 sys/fs/puffs/puffs_vnops.c
--- a/sys/fs/puffs/puffs_vnops.c Sun Nov 09 07:34:12 2014 +0000
+++ b/sys/fs/puffs/puffs_vnops.c Sun Nov 09 07:50:12 2014 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: puffs_vnops.c,v 1.163.2.8 2014/11/09 06:28:03 msaitoh Exp $ */
+/* $NetBSD: puffs_vnops.c,v 1.163.2.9 2014/11/09 07:50:12 msaitoh Exp $ */
/*
* Copyright (c) 2005, 2006, 2007 Antti Kantee. All Rights Reserved.
@@ -30,7 +30,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.163.2.8 2014/11/09 06:28:03 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: puffs_vnops.c,v 1.163.2.9 2014/11/09 07:50:12 msaitoh Exp $");
#include <sys/param.h>
#include <sys/buf.h>
@@ -2762,13 +2762,6 @@
if (dobiodone == 0)
goto out;
- /*
- * XXXXXXXX: wrong, but kernel can't survive strategy
- * failure currently. Here, have one more X: X.
- */
- if (error != ENOMEM)
- error = 0;
-
error = checkerr(pmp, error, __func__);
if (error)
goto out;
Home |
Main Index |
Thread Index |
Old Index