David Miller <da...@davemloft.net> writes:

> From: Toke Høiland-Jørgensen <t...@toke.dk>
> Date: Wed, 25 Apr 2018 15:42:48 +0200
>
>> +static void *cake_zalloc(size_t sz)
>> +{
>> +    void *ptr = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN);
>> +
>> +    if (!ptr)
>> +            ptr = vzalloc(sz);
>> +    return ptr;
>> +}
>
> This is just kvzalloc(sz, GFP_KERNEL | __GFP_NOWARN)?

Ah yes; we actually fixed that before, but guess it got lost this time
around. Will fix :)

-Toke
_______________________________________________
Cake mailing list
Cake@lists.bufferbloat.net
https://lists.bufferbloat.net/listinfo/cake

Reply via email to