svn commit: r287138 - in head: sys/dev/ioat tools/tools/ioat
Conrad E. Meyer
cem at FreeBSD.org
Tue Aug 25 17:39:04 UTC 2015
Author: cem
Date: Tue Aug 25 17:39:03 2015
New Revision: 287138
URL: https://svnweb.freebsd.org/changeset/base/287138
Log:
ioat(4): Minor style cleanups
Suggested by: ngie
Reviewed by: jimharris
Approved by: markj (mentor)
Sponsored by: EMC / Isilon Storage Division
Differential Revision: https://reviews.freebsd.org/D3481
Modified:
head/sys/dev/ioat/ioat.c
head/tools/tools/ioat/Makefile
Modified: head/sys/dev/ioat/ioat.c
==============================================================================
--- head/sys/dev/ioat/ioat.c Tue Aug 25 17:11:49 2015 (r287137)
+++ head/sys/dev/ioat/ioat.c Tue Aug 25 17:39:03 2015 (r287138)
@@ -798,7 +798,7 @@ resize_ring(struct ioat_softc *ioat, int
new_idx = (ioat->tail + i) & (new_size - 1);
ring[new_idx] = ioat_alloc_ring_entry(ioat);
- if (!ring[new_idx]) {
+ if (ring[new_idx] == NULL) {
while (i--) {
new_idx2 = (ioat->tail + i) &
(new_size - 1);
Modified: head/tools/tools/ioat/Makefile
==============================================================================
--- head/tools/tools/ioat/Makefile Tue Aug 25 17:11:49 2015 (r287137)
+++ head/tools/tools/ioat/Makefile Tue Aug 25 17:39:03 2015 (r287138)
@@ -1,7 +1,6 @@
# $FreeBSD$
PROG= ioatcontrol
-SRCS= ioatcontrol.c
MAN= ioatcontrol.8
CFLAGS+= -I${.CURDIR:H:H:H}/sys/dev/ioat
WARNS?= 6
More information about the svn-src-head
mailing list