ustream: tweak ustream_prepare_buf() a bit.
No functional change. - Reuse existing NULL check on buf. - Add some comments for ease of reading the code. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
parent
791a361ad1
commit
9386d0717a
1 changed files with 11 additions and 5 deletions
12
ustream.c
12
ustream.c
|
@ -145,21 +145,26 @@ static bool ustream_should_move(struct ustream_buf_list *l, struct ustream_buf *
|
||||||
int maxlen;
|
int maxlen;
|
||||||
int offset;
|
int offset;
|
||||||
|
|
||||||
|
/* nothing to squeeze */
|
||||||
if (buf->data == buf->head)
|
if (buf->data == buf->head)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
maxlen = buf->end - buf->head;
|
maxlen = buf->end - buf->head;
|
||||||
offset = buf->data - buf->head;
|
offset = buf->data - buf->head;
|
||||||
|
|
||||||
|
/* less than half is available */
|
||||||
if (offset > maxlen / 2)
|
if (offset > maxlen / 2)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
/* less than 32 bytes data but takes more than 1/4 space */
|
||||||
if (buf->tail - buf->data < 32 && offset > maxlen / 4)
|
if (buf->tail - buf->data < 32 && offset > maxlen / 4)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
/* more buf is already in list or can be allocated */
|
||||||
if (buf != l->tail || ustream_can_alloc(l))
|
if (buf != l->tail || ustream_can_alloc(l))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
/* no need to move if len is available at the tail */
|
||||||
return (buf->end - buf->tail < len);
|
return (buf->end - buf->tail < len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -255,14 +260,15 @@ static bool ustream_prepare_buf(struct ustream *s, struct ustream_buf_list *l, i
|
||||||
if (l == &s->r)
|
if (l == &s->r)
|
||||||
ustream_fixup_string(s, buf);
|
ustream_fixup_string(s, buf);
|
||||||
}
|
}
|
||||||
|
/* some chunks available at the tail */
|
||||||
if (buf->tail != buf->end)
|
if (buf->tail != buf->end)
|
||||||
return true;
|
return true;
|
||||||
}
|
/* next buf available */
|
||||||
|
if (buf->next) {
|
||||||
if (buf && buf->next) {
|
|
||||||
l->data_tail = buf->next;
|
l->data_tail = buf->next;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (!ustream_can_alloc(l))
|
if (!ustream_can_alloc(l))
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue