Reduce indentation.

MFC after:	3 days
This commit is contained in:
Pawel Jakub Dawidek 2011-10-27 20:13:39 +00:00
parent 5a58d22a84
commit 43b8675beb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=226856

View File

@ -1319,7 +1319,8 @@ local_send_thread(void *arg)
}
break;
}
if (refcount_release(&hio->hio_countdown)) {
if (!refcount_release(&hio->hio_countdown))
continue;
if (ISSYNCREQ(hio)) {
mtx_lock(&sync_lock);
SYNCREQDONE(hio);
@ -1332,7 +1333,6 @@ local_send_thread(void *arg)
QUEUE_INSERT2(hio, done);
}
}
}
/* NOTREACHED */
return (NULL);
}
@ -1640,7 +1640,8 @@ remote_recv_thread(void *arg)
hio->hio_errors[ncomp] = 0;
nv_free(nv);
done_queue:
if (refcount_release(&hio->hio_countdown)) {
if (!refcount_release(&hio->hio_countdown))
continue;
if (ISSYNCREQ(hio)) {
mtx_lock(&sync_lock);
SYNCREQDONE(hio);
@ -1653,7 +1654,6 @@ remote_recv_thread(void *arg)
QUEUE_INSERT2(hio, done);
}
}
}
/* NOTREACHED */
return (NULL);
}