page-io.c (8d8c1825709020c73b5e66f96c114f6a1f6461e7) page-io.c (4a092d737955301da22b9d5e07f5036da821a932)
1/*
2 * linux/fs/ext4/page-io.c
3 *
4 * This contains the new page_io functions for ext4
5 *
6 * Written by Theodore Ts'o, 2010.
7 */
8

--- 13 unchanged lines hidden (view full) ---

22#include <linux/bio.h>
23#include <linux/workqueue.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
26
27#include "ext4_jbd2.h"
28#include "xattr.h"
29#include "acl.h"
1/*
2 * linux/fs/ext4/page-io.c
3 *
4 * This contains the new page_io functions for ext4
5 *
6 * Written by Theodore Ts'o, 2010.
7 */
8

--- 13 unchanged lines hidden (view full) ---

22#include <linux/bio.h>
23#include <linux/workqueue.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
26
27#include "ext4_jbd2.h"
28#include "xattr.h"
29#include "acl.h"
30#include "ext4_extents.h"
31
32static struct kmem_cache *io_page_cachep, *io_end_cachep;
33
34int __init ext4_init_pageio(void)
35{
36 io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT);
37 if (io_page_cachep == NULL)
38 return -ENOMEM;

--- 457 unchanged lines hidden ---
30
31static struct kmem_cache *io_page_cachep, *io_end_cachep;
32
33int __init ext4_init_pageio(void)
34{
35 io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT);
36 if (io_page_cachep == NULL)
37 return -ENOMEM;

--- 457 unchanged lines hidden ---