uptodate.c (ac11c827192272eabb68b8f4cf844066461d9690) | uptodate.c (2b4e30fbde425828b17f0e9c8f8e3fd3ecb2bc75) |
---|---|
1/* -*- mode: c; c-basic-offset: 8; -*- 2 * vim: noexpandtab sw=8 ts=8 sts=0: 3 * 4 * uptodate.c 5 * 6 * Tracking the up-to-date-ness of a local buffer_head with respect to 7 * the cluster. 8 * --- 39 unchanged lines hidden (view full) --- 48 */ 49 50#include <linux/fs.h> 51#include <linux/types.h> 52#include <linux/slab.h> 53#include <linux/highmem.h> 54#include <linux/buffer_head.h> 55#include <linux/rbtree.h> | 1/* -*- mode: c; c-basic-offset: 8; -*- 2 * vim: noexpandtab sw=8 ts=8 sts=0: 3 * 4 * uptodate.c 5 * 6 * Tracking the up-to-date-ness of a local buffer_head with respect to 7 * the cluster. 8 * --- 39 unchanged lines hidden (view full) --- 48 */ 49 50#include <linux/fs.h> 51#include <linux/types.h> 52#include <linux/slab.h> 53#include <linux/highmem.h> 54#include <linux/buffer_head.h> 55#include <linux/rbtree.h> |
56#include <linux/jbd.h> | 56#ifndef CONFIG_OCFS2_COMPAT_JBD 57# include <linux/jbd2.h> 58#else 59# include <linux/jbd.h> 60#endif |
57 58#define MLOG_MASK_PREFIX ML_UPTODATE 59 60#include <cluster/masklog.h> 61 62#include "ocfs2.h" 63 64#include "inode.h" --- 521 unchanged lines hidden --- | 61 62#define MLOG_MASK_PREFIX ML_UPTODATE 63 64#include <cluster/masklog.h> 65 66#include "ocfs2.h" 67 68#include "inode.h" --- 521 unchanged lines hidden --- |