aops.h 587 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (C) 2018 Red Hat, Inc. All rights reserved.
  4. */
  5. #ifndef __AOPS_DOT_H__
  6. #define __AOPS_DOT_H__
  7. #include "incore.h"
  8. extern int stuffed_readpage(struct gfs2_inode *ip, struct page *page);
  9. extern int gfs2_stuffed_write_end(struct inode *inode, struct buffer_head *dibh,
  10. loff_t pos, unsigned copied,
  11. struct page *page);
  12. extern void adjust_fs_space(struct inode *inode);
  13. extern void gfs2_page_add_databufs(struct gfs2_inode *ip, struct page *page,
  14. unsigned int from, unsigned int len);
  15. #endif /* __AOPS_DOT_H__ */