struct bpf_ringbuf_map {
        struct bpf_map map;
-       struct bpf_map_memory memory;
        struct bpf_ringbuf *rb;
 };
 
 
        rb = bpf_ringbuf_area_alloc(data_sz, numa_node);
        if (!rb)
-               return ERR_PTR(-ENOMEM);
+               return NULL;
 
        spin_lock_init(&rb->spinlock);
        init_waitqueue_head(&rb->waitq);
 static struct bpf_map *ringbuf_map_alloc(union bpf_attr *attr)
 {
        struct bpf_ringbuf_map *rb_map;
-       u64 cost;
-       int err;
 
        if (attr->map_flags & ~RINGBUF_CREATE_FLAG_MASK)
                return ERR_PTR(-EINVAL);
 
        bpf_map_init_from_attr(&rb_map->map, attr);
 
-       cost = sizeof(struct bpf_ringbuf_map) +
-              sizeof(struct bpf_ringbuf) +
-              attr->max_entries;
-       err = bpf_map_charge_init(&rb_map->map.memory, cost);
-       if (err)
-               goto err_free_map;
-
        rb_map->rb = bpf_ringbuf_alloc(attr->max_entries, rb_map->map.numa_node);
-       if (IS_ERR(rb_map->rb)) {
-               err = PTR_ERR(rb_map->rb);
-               goto err_uncharge;
+       if (!rb_map->rb) {
+               kfree(rb_map);
+               return ERR_PTR(-ENOMEM);
        }
 
        return &rb_map->map;
-
-err_uncharge:
-       bpf_map_charge_finish(&rb_map->map.memory);
-err_free_map:
-       kfree(rb_map);
-       return ERR_PTR(err);
 }
 
 static void bpf_ringbuf_free(struct bpf_ringbuf *rb)