David Miller <[email protected]> writes:

> From: Toke Høiland-Jørgensen <[email protected]>
> 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
[email protected]
https://lists.bufferbloat.net/listinfo/cake

Reply via email to