diff options
| author | Scott Long <scottl@FreeBSD.org> | 2002-10-02 07:44:29 +0000 |
|---|---|---|
| committer | Scott Long <scottl@FreeBSD.org> | 2002-10-02 07:44:29 +0000 |
| commit | 316ec49abd15743784b47592c00d6297dabce21b (patch) | |
| tree | 0a9cc28f7570a42ae4e5df4cfc55dee42c36d9d8 /sys/dev/md | |
| parent | a70e34ac714c1609edfcc248799d078d66ee5f79 (diff) | |
Notes
Diffstat (limited to 'sys/dev/md')
| -rw-r--r-- | sys/dev/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index ae1953d72c5e..7836ceddec6c 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -646,7 +646,7 @@ mdnew(int unit) sc = (struct md_s *)malloc(sizeof *sc, M_MD, M_WAITOK | M_ZERO); sc->unit = unit; sprintf(sc->name, "md%d", unit); - error = kthread_create(md_kthread, sc, &sc->procp, 0, "%s", sc->name); + error = kthread_create(md_kthread, sc, &sc->procp, 0, 0,"%s", sc->name); if (error) { free(sc, M_MD); return (NULL); |
