From: Guoqing Jiang Date: Tue, 2 Jun 2020 04:48:03 +0000 (-0700) Subject: buffer_head.h: remove attach_page_buffers X-Git-Tag: v5.15~3759^2~81 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7b59435a2afed12dc9b2ec1b930efa2e94f1c397;p=platform%2Fkernel%2Flinux-starfive.git buffer_head.h: remove attach_page_buffers All the callers have replaced attach_page_buffers with the new function attach_page_private, so remove it. Signed-off-by: Guoqing Jiang Signed-off-by: Andrew Morton Reviewed-by: Andrew Morton Cc: Thomas Gleixner Cc: Sebastian Andrzej Siewior Cc: Roman Gushchin Cc: Andreas Dilger Link: http://lkml.kernel.org/r/20200517214718.468-10-guoqing.jiang@cloud.ionos.com Signed-off-by: Linus Torvalds --- diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index 15b765a..22fb11e 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h @@ -272,14 +272,6 @@ void buffer_init(void); * inline definitions */ -static inline void attach_page_buffers(struct page *page, - struct buffer_head *head) -{ - get_page(page); - SetPagePrivate(page); - set_page_private(page, (unsigned long)head); -} - static inline void get_bh(struct buffer_head *bh) { atomic_inc(&bh->b_count);