Displaying 5 results from an estimated 5 matches for "aernoudt".
2001 Jan 23
5
iptables
Isn''t it possible with iptables to filter on DSCP field?
Thanks,
Tom Aernoudt
2016 Feb 29
2
Jit: use @llvm.lifetime.end to optimize away stores to globals used as temporaries
Hi all,
Is it allowed to use the @llvm.lifetime.end intrinsic to optimize away stores to global variables that are used as temporaries?
eg I want use the Jit engine to generate code for the following function 'f':
struct State {
int a;
int tmp;
int b;
};
void f0(State* s) { s->tmp = s->a; }
void f1(State* s) { s->b = s->tmp; }
void f(State* s)
{
f0(s);
f1(s);
}
2016 Feb 29
0
Jit: use @llvm.lifetime.end to optimize away stores to globals used as temporaries
Tom Aernoudt via llvm-dev schrieb:
> Hi all,
>
> The 'tmp' state variable is only needed during execution of the function
> 'f'.
>
That's what you say, because you called it 'tmp' :), but the compiler
sees no difference to 'a' or 'b'. As soon as s->...
2001 Jan 11
0
ingress DSCP marking
...tc filter add dev eth0 parent ffff:1 protocol ip prio 1 handle 1 fw
classid ffff:1
But the DSCP value isn''t set correctly.
What''s wrong with it? If I try to mark the packets at the outgoing
interface then the
DSCP value is set. Why doesn''t it work at the ingress?
Tom Aernoudt
2001 Jan 17
0
dscp marking
...ex classid 2:161
$TC filter add dev $DEV parent 2:0 protocol ip prio 1 \
handle 6 tcindex classid 2:6
</bigger>
But I can''t combine the two. What do I have to do to combine these 2?
I tried to do the marking at the ingress but that didn''t work.
Thanks,
Tom Aernoudt