Source-Changes-HG archive

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

[src/trunk]: src/sys/dev/ata Call wd_params_to_properties() after softc is su...



details:   https://anonhg.NetBSD.org/src/rev/a4af920dd726
branches:  trunk
changeset: 816758:a4af920dd726
user:      jakllsch <jakllsch%NetBSD.org@localhost>
date:      Thu Jul 21 19:05:03 2016 +0000

description:
Call wd_params_to_properties() after softc is sufficently
initialized.

diffstat:

 sys/dev/ata/wd.c |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (42 lines):

diff -r cda4f8ec234b -r a4af920dd726 sys/dev/ata/wd.c
--- a/sys/dev/ata/wd.c  Thu Jul 21 18:54:13 2016 +0000
+++ b/sys/dev/ata/wd.c  Thu Jul 21 19:05:03 2016 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: wd.c,v 1.422 2016/07/21 18:54:13 jakllsch Exp $ */
+/*     $NetBSD: wd.c,v 1.423 2016/07/21 19:05:03 jakllsch Exp $ */
 
 /*
  * Copyright (c) 1998, 2001 Manuel Bouyer.  All rights reserved.
@@ -54,7 +54,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.422 2016/07/21 18:54:13 jakllsch Exp $");
+__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.423 2016/07/21 19:05:03 jakllsch Exp $");
 
 #include "opt_ata.h"
 
@@ -194,6 +194,7 @@
 void  wdstart1(struct wd_softc*, struct buf *);
 void  wdrestart(void *);
 void  wddone(void *);
+static void wd_params_to_properties(struct wd_softc *);
 int   wd_get_params(struct wd_softc *, uint8_t, struct ataparams *);
 int   wd_flushcache(struct wd_softc *, int);
 int   wd_trim(struct wd_softc *, int, daddr_t, long);
@@ -411,6 +412,7 @@
        disk_init(&wd->sc_dk, device_xname(wd->sc_dev), &wddkdriver);
        disk_attach(&wd->sc_dk);
        wd->sc_wdc_bio.lp = wd->sc_dk.dk_label;
+       wd_params_to_properties(wd);
        rnd_attach_source(&wd->rnd_source, device_xname(wd->sc_dev),
                          RND_TYPE_DISK, RND_FLAG_DEFAULT);
 
@@ -1774,7 +1776,6 @@
                wd->drvp->ata_vers = -1; /* Mark it as pre-ATA */
                /* FALLTHROUGH */
        case CMD_OK:
-               wd_params_to_properties(wd);
                return 0;
        default:
                panic("wd_get_params: bad return code from ata_get_params");



Home | Main Index | Thread Index | Old Index