X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=prebuffer_filter.c;h=9a801900c157e1da2da979c92d7bd60d03e21b9c;hp=8ca1630d8112242ee65b3feb63e2883ffdac7f86;hb=442a3320ff155d09b990c0ee2abace399cbcd6dd;hpb=1f12ea375358a0b30689e01efe82796ea4fcb14f diff --git a/prebuffer_filter.c b/prebuffer_filter.c index 8ca1630d..9a801900 100644 --- a/prebuffer_filter.c +++ b/prebuffer_filter.c @@ -1,8 +1,4 @@ -/* - * Copyright (C) 2009 Andre Noll - * - * Licensed under the GPL v2. For licencing details see COPYING. - */ +/* Copyright (C) 2009 Andre Noll , see file COPYING. */ /** \file prebuffer_filter.c Paraslash's prebuffering filter. */ @@ -61,7 +57,14 @@ static int prebuffer_post_select(__a_unused struct sched *s, void *context) size_t iqs = btr_get_input_queue_size(btrn); struct private_prebuffer_data *ppd = fn->private_data; uint32_t size = FILTER_CMD_OPT_UINT32_VAL(PREBUFFER, SIZE, fn->lpr); + int ret; + ret = task_get_notification(fn->task); + if (ret < 0) + goto fail; + ret = btr_node_status(btrn, size, BTR_NT_INTERNAL); + if (ret < 0) + goto fail; if (ppd->barrier.tv_sec == 0) return 0; if (tv_diff(now, &ppd->barrier, NULL) < 0) @@ -70,6 +73,9 @@ static int prebuffer_post_select(__a_unused struct sched *s, void *context) return 0; btr_splice_out_node(&fn->btrn); return -E_PREBUFFER_SUCCESS; +fail: + btr_remove_node(&fn->btrn); + return ret; } static void prebuffer_open(struct filter_node *fn)