Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/raidframe When autoconfiguring RAID sets:



details:   https://anonhg.NetBSD.org/src/rev/cf16fb046e58
branches:  trunk
changeset: 342697:cf16fb046e58
user:      mlelstv <mlelstv%NetBSD.org@localhost>
date:      Tue Jan 05 17:06:34 2016 +0000

description:
When autoconfiguring RAID sets:

Pseudo devices like vnd and cgd can be opened but may still
need some configuration. Ignore these quietly.

diffstat:

 sys/dev/raidframe/rf_netbsdkintf.c |  15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r ffb76b9c127c -r cf16fb046e58 sys/dev/raidframe/rf_netbsdkintf.c
--- a/sys/dev/raidframe/rf_netbsdkintf.c        Tue Jan 05 17:03:53 2016 +0000
+++ b/sys/dev/raidframe/rf_netbsdkintf.c        Tue Jan 05 17:06:34 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: rf_netbsdkintf.c,v 1.338 2016/01/05 17:03:53 mlelstv Exp $     */
+/*     $NetBSD: rf_netbsdkintf.c,v 1.339 2016/01/05 17:06:34 mlelstv Exp $     */
 
 /*-
  * Copyright (c) 1996, 1997, 1998, 2008-2011 The NetBSD Foundation, Inc.
@@ -101,7 +101,7 @@
  ***********************************************************/
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.338 2016/01/05 17:03:53 mlelstv Exp $");
+__KERNEL_RCSID(0, "$NetBSD: rf_netbsdkintf.c,v 1.339 2016/01/05 17:06:34 mlelstv Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_compat_netbsd.h"
@@ -2840,8 +2840,15 @@
 
                        error = getdisksize(vp, &numsecs, &secsize);
                        if (error) {
-                               printf("RAIDframe: can't get disk size for "
-                                   "dev %s (%d)\n", device_xname(dv), error);
+                               /*
+                                * Pseudo devices like vnd and cgd can be
+                                * opened but may still need some configuration.
+                                * Ignore these quietly.
+                                */
+                               if (error != ENXIO)
+                                       printf("RAIDframe: can't get disk size"
+                                           " for dev %s (%d)\n",
+                                           device_xname(dv), error);
                                vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
                                VOP_CLOSE(vp, FREAD | FWRITE, NOCRED);
                                vput(vp);



Home | Main Index | Thread Index | Old Index