Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-12-30 22:21:03 +0400
committerFelix Fietkau <nbd@openwrt.org>2012-12-30 22:21:03 +0400
commit29c066cfd60cc9101201a2c31a9aa66288288719 (patch)
tree95533c4203b58fa4c86d516f6ab23d905872fd32 /ustream.c
parent300a809a7a6b30595962308c4215ead6ec361053 (diff)
ustream: avoid calling s->poll from a write path to avoid looping back through the notify_write cb
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'ustream.c')
-rw-r--r--ustream.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/ustream.c b/ustream.c
index 37fbaf7..9c61806 100644
--- a/ustream.c
+++ b/ustream.c
@@ -379,7 +379,6 @@ static int ustream_write_buffered(struct ustream *s, const char *data, int len,
struct ustream_buf_list *l = &s->w;
struct ustream_buf *buf;
int maxlen;
- bool has_data = !!s->w.data_bytes;
while (len) {
if (!ustream_prepare_buf(s, &s->w, len))
@@ -399,9 +398,6 @@ static int ustream_write_buffered(struct ustream *s, const char *data, int len,
l->data_bytes += maxlen;
}
- if (s->poll && !has_data)
- s->poll(s);
-
return wr;
}