write.c (f81483aaeb59da530b286fe5d081e1705eb5c886) | write.c (523d27cda149cfc8c99159c0f68f690e4d3b9d14) |
---|---|
1// SPDX-License-Identifier: GPL-2.0-or-later 2/* handling of writes to regular files and writing back to the server 3 * 4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. 5 * Written by David Howells (dhowells@redhat.com) 6 */ 7 8#include <linux/backing-dev.h> 9#include <linux/slab.h> 10#include <linux/fs.h> 11#include <linux/pagemap.h> 12#include <linux/writeback.h> 13#include <linux/pagevec.h> 14#include <linux/netfs.h> | 1// SPDX-License-Identifier: GPL-2.0-or-later 2/* handling of writes to regular files and writing back to the server 3 * 4 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. 5 * Written by David Howells (dhowells@redhat.com) 6 */ 7 8#include <linux/backing-dev.h> 9#include <linux/slab.h> 10#include <linux/fs.h> 11#include <linux/pagemap.h> 12#include <linux/writeback.h> 13#include <linux/pagevec.h> 14#include <linux/netfs.h> |
15#include <linux/fscache.h> | |
16#include "internal.h" 17 18/* 19 * mark a page as having been made dirty and thus needing writeback 20 */ 21int afs_set_page_dirty(struct page *page) 22{ 23 _enter(""); --- 949 unchanged lines hidden --- | 15#include "internal.h" 16 17/* 18 * mark a page as having been made dirty and thus needing writeback 19 */ 20int afs_set_page_dirty(struct page *page) 21{ 22 _enter(""); --- 949 unchanged lines hidden --- |