mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-28 08:02:54 +00:00
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
This commit is contained in:
parent
1cdb618269
commit
8c8e848710
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287138
@ -798,7 +798,7 @@ resize_ring(struct ioat_softc *ioat, int order)
|
||||
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);
|
||||
|
@ -1,7 +1,6 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PROG= ioatcontrol
|
||||
SRCS= ioatcontrol.c
|
||||
MAN= ioatcontrol.8
|
||||
CFLAGS+= -I${.CURDIR:H:H:H}/sys/dev/ioat
|
||||
WARNS?= 6
|
||||
|
Loading…
Reference in New Issue
Block a user