summaryrefslogtreecommitdiffstats
path: root/fs/bcachefs/fifo.h
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-02-01 06:35:46 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2024-03-13 18:39:12 -0400
commitcb6fc943b650c4f0ca2ba753531c0803c8afbb5c (patch)
treefc28749688b6c65bc1ecf5b136eda6b322543ee2 /fs/bcachefs/fifo.h
parent0225bdfafd818f895fa4a4512f124a1614e011e2 (diff)
downloadlinux-stable-cb6fc943b650c4f0ca2ba753531c0803c8afbb5c.tar.gz
linux-stable-cb6fc943b650c4f0ca2ba753531c0803c8afbb5c.tar.bz2
linux-stable-cb6fc943b650c4f0ca2ba753531c0803c8afbb5c.zip
bcachefs: kill kvpmalloc()
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/fifo.h')
-rw-r--r--fs/bcachefs/fifo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/bcachefs/fifo.h b/fs/bcachefs/fifo.h
index 66b945be10c2..d8153fe27037 100644
--- a/fs/bcachefs/fifo.h
+++ b/fs/bcachefs/fifo.h
@@ -24,12 +24,12 @@ struct { \
(fifo)->mask = (fifo)->size \
? roundup_pow_of_two((fifo)->size) - 1 \
: 0; \
- (fifo)->data = kvpmalloc(fifo_buf_size(fifo), (_gfp)); \
+ (fifo)->data = kvmalloc(fifo_buf_size(fifo), (_gfp)); \
})
#define free_fifo(fifo) \
do { \
- kvpfree((fifo)->data, fifo_buf_size(fifo)); \
+ kvfree((fifo)->data); \
(fifo)->data = NULL; \
} while (0)