xfs_filestream.c (239880ef6454ccff2ba8d762c3f86e8278f0ce1c) | xfs_filestream.c (a4fbe6ab1e7abecf42b75e9c73701ed33b4ab03b) |
---|---|
1/* 2 * Copyright (c) 2006-2007 Silicon Graphics, Inc. 3 * All Rights Reserved. 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it would be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write the Free Software Foundation, 16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 17 */ 18#include "xfs.h" | 1/* 2 * Copyright (c) 2006-2007 Silicon Graphics, Inc. 3 * All Rights Reserved. 4 * 5 * This program is free software; you can redistribute it and/or 6 * modify it under the terms of the GNU General Public License as 7 * published by the Free Software Foundation. 8 * 9 * This program is distributed in the hope that it would be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write the Free Software Foundation, 16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 17 */ 18#include "xfs.h" |
19#include "xfs_format.h" |
|
19#include "xfs_log_format.h" 20#include "xfs_trans_resv.h" 21#include "xfs_ag.h" 22#include "xfs_sb.h" 23#include "xfs_mount.h" | 20#include "xfs_log_format.h" 21#include "xfs_trans_resv.h" 22#include "xfs_ag.h" 23#include "xfs_sb.h" 24#include "xfs_mount.h" |
24#include "xfs_bmap_btree.h" | |
25#include "xfs_inum.h" | 25#include "xfs_inum.h" |
26#include "xfs_dinode.h" | |
27#include "xfs_inode.h" 28#include "xfs_bmap.h" 29#include "xfs_bmap_util.h" 30#include "xfs_alloc.h" 31#include "xfs_mru_cache.h" | 26#include "xfs_inode.h" 27#include "xfs_bmap.h" 28#include "xfs_bmap_util.h" 29#include "xfs_alloc.h" 30#include "xfs_mru_cache.h" |
31#include "xfs_dinode.h" |
|
32#include "xfs_filestream.h" 33#include "xfs_trace.h" 34 35#ifdef XFS_FILESTREAMS_TRACE 36 37ktrace_t *xfs_filestreams_trace_buf; 38 39STATIC void --- 785 unchanged lines hidden --- | 32#include "xfs_filestream.h" 33#include "xfs_trace.h" 34 35#ifdef XFS_FILESTREAMS_TRACE 36 37ktrace_t *xfs_filestreams_trace_buf; 38 39STATIC void --- 785 unchanged lines hidden --- |