VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Guoqing Jiang <guoqing.jiang@cloud.ionos.com> 2020-06-01 21:47:57 -0700 committer: Linus Torvalds <torvalds@linux-foundation.org> 2020-06-02 10:59:07 -0700 commit: 14ed109e3f3daabb5689b32176a3b2194ae1b609 parent: 58aeb731963cb4cf4db35412723b5084799dbe06
Commit Summary:
ntfs: replace attach_page_buffers with attach_page_private
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/ntfs/aops.c b/fs/ntfs/aops.c
index 554b744f41bf..bb0a43860ad2 100644
--- a/fs/ntfs/aops.c
+++ b/fs/ntfs/aops.c
@@ -1732,7 +1732,7 @@ void mark_ntfs_record_dirty(struct page *page, const unsigned int ofs) {
 				bh = bh->b_this_page;
 			} while (bh);
 			tail->b_this_page = head;
-			attach_page_buffers(page, head);
+			attach_page_private(page, head);
 		} else
 			buffers_to_free = bh;
 	}