indirect.c (51865fda28e585bdcc164474ff6438a9ccdbfada) indirect.c (4a092d737955301da22b9d5e07f5036da821a932)
1/*
2 * linux/fs/ext4/indirect.c
3 *
4 * from
5 *
6 * linux/fs/ext4/inode.c
7 *
8 * Copyright (C) 1992, 1993, 1994, 1995

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

17 * Copyright (C) 1991, 1992 Linus Torvalds
18 *
19 * Goal-directed block allocation by Stephen Tweedie
20 * (sct@redhat.com), 1993, 1998
21 */
22
23#include "ext4_jbd2.h"
24#include "truncate.h"
1/*
2 * linux/fs/ext4/indirect.c
3 *
4 * from
5 *
6 * linux/fs/ext4/inode.c
7 *
8 * Copyright (C) 1992, 1993, 1994, 1995

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

17 * Copyright (C) 1991, 1992 Linus Torvalds
18 *
19 * Goal-directed block allocation by Stephen Tweedie
20 * (sct@redhat.com), 1993, 1998
21 */
22
23#include "ext4_jbd2.h"
24#include "truncate.h"
25#include "ext4_extents.h" /* Needed for EXT_MAX_BLOCKS */
25
26#include <trace/events/ext4.h>
27
28typedef struct {
29 __le32 *p;
30 __le32 key;
31 struct buffer_head *bh;
32} Indirect;

--- 1484 unchanged lines hidden ---
26
27#include <trace/events/ext4.h>
28
29typedef struct {
30 __le32 *p;
31 __le32 key;
32 struct buffer_head *bh;
33} Indirect;

--- 1484 unchanged lines hidden ---