dir.c (617ba13b31fbf505cc21799826639ef24ed94af0) | dir.c (dab291af8d6307a3075c3d67d0cc8f98e646cb94) |
---|---|
1/* 2 * linux/fs/ext4/dir.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 8 unchanged lines hidden (view full) --- 17 * Big-endian to little-endian byte-swapping/bitmaps by 18 * David S. Miller (davem@caip.rutgers.edu), 1995 19 * 20 * Hash Tree Directory indexing (c) 2001 Daniel Phillips 21 * 22 */ 23 24#include <linux/fs.h> | 1/* 2 * linux/fs/ext4/dir.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 8 unchanged lines hidden (view full) --- 17 * Big-endian to little-endian byte-swapping/bitmaps by 18 * David S. Miller (davem@caip.rutgers.edu), 1995 19 * 20 * Hash Tree Directory indexing (c) 2001 Daniel Phillips 21 * 22 */ 23 24#include <linux/fs.h> |
25#include <linux/jbd.h> | 25#include <linux/jbd2.h> |
26#include <linux/ext4_fs.h> 27#include <linux/buffer_head.h> 28#include <linux/smp_lock.h> 29#include <linux/slab.h> 30#include <linux/rbtree.h> 31 32static unsigned char ext4_filetype_table[] = { 33 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK --- 485 unchanged lines hidden --- | 26#include <linux/ext4_fs.h> 27#include <linux/buffer_head.h> 28#include <linux/smp_lock.h> 29#include <linux/slab.h> 30#include <linux/rbtree.h> 31 32static unsigned char ext4_filetype_table[] = { 33 DT_UNKNOWN, DT_REG, DT_DIR, DT_CHR, DT_BLK, DT_FIFO, DT_SOCK, DT_LNK --- 485 unchanged lines hidden --- |