svn commit: r310853 - head/lib/libstand
Toomas Soome
tsoome at FreeBSD.org
Fri Dec 30 20:00:43 UTC 2016
Author: tsoome
Date: Fri Dec 30 20:00:41 2016
New Revision: 310853
URL: https://svnweb.freebsd.org/changeset/base/310853
Log:
loader: nandfs calls strategy with one extra argument.
The strategy argument cleanup in r310850 did miss another call to strategy(),
and left it with extra argument.
Reviewed by: allanjude
Approved by: allanjude (mentor)
MFC after: 1 month
Differential Revision: https://reviews.freebsd.org/D9003
Modified:
head/lib/libstand/nandfs.c
Modified: head/lib/libstand/nandfs.c
==============================================================================
--- head/lib/libstand/nandfs.c Fri Dec 30 19:55:04 2016 (r310852)
+++ head/lib/libstand/nandfs.c Fri Dec 30 20:00:41 2016 (r310853)
@@ -1045,7 +1045,7 @@ nandfs_probe_sectorsize(struct open_file
for (i = 512; i < (16 * 1024); i <<= 1) {
NANDFS_DEBUG("%d ", i);
- err = (f->f_dev->dv_strategy)(f->f_devdata, F_READ, 0, 0, i,
+ err = (f->f_dev->dv_strategy)(f->f_devdata, F_READ, 0, i,
buffer, NULL);
if (err == 0) {
More information about the svn-src-head
mailing list