Lines Matching defs:local_reserve
1465 int local_reserve;
1468 local_reserve = __this_cpu_add_return(*sk->sk_prot->per_cpu_fw_alloc, amt);
1469 if (local_reserve >= SK_MEMORY_PCPU_RESERVE) {
1470 __this_cpu_sub(*sk->sk_prot->per_cpu_fw_alloc, local_reserve);
1471 atomic_long_add(local_reserve, sk->sk_prot->memory_allocated);
1479 int local_reserve;
1482 local_reserve = __this_cpu_sub_return(*sk->sk_prot->per_cpu_fw_alloc, amt);
1483 if (local_reserve <= -SK_MEMORY_PCPU_RESERVE) {
1484 __this_cpu_sub(*sk->sk_prot->per_cpu_fw_alloc, local_reserve);
1485 atomic_long_add(local_reserve, sk->sk_prot->memory_allocated);