xfs_xattr.c (239880ef6454ccff2ba8d762c3f86e8278f0ce1c) | xfs_xattr.c (a4fbe6ab1e7abecf42b75e9c73701ed33b4ab03b) |
---|---|
1/* 2 * Copyright (C) 2008 Christoph Hellwig. 3 * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc. 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 19#include "xfs.h" | 1/* 2 * Copyright (C) 2008 Christoph Hellwig. 3 * Portions Copyright (C) 2000-2008 Silicon Graphics, Inc. 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 19#include "xfs.h" |
20#include "xfs_format.h" |
|
20#include "xfs_log_format.h" 21#include "xfs_trans_resv.h" 22#include "xfs_sb.h" 23#include "xfs_ag.h" 24#include "xfs_mount.h" 25#include "xfs_da_format.h" | 21#include "xfs_log_format.h" 22#include "xfs_trans_resv.h" 23#include "xfs_sb.h" 24#include "xfs_ag.h" 25#include "xfs_mount.h" 26#include "xfs_da_format.h" |
26#include "xfs_bmap_btree.h" | |
27#include "xfs_inode.h" 28#include "xfs_attr.h" 29#include "xfs_attr_leaf.h" 30#include "xfs_acl.h" 31 32#include <linux/posix_acl_xattr.h> 33#include <linux/xattr.h> 34 --- 211 unchanged lines hidden --- | 27#include "xfs_inode.h" 28#include "xfs_attr.h" 29#include "xfs_attr_leaf.h" 30#include "xfs_acl.h" 31 32#include <linux/posix_acl_xattr.h> 33#include <linux/xattr.h> 34 --- 211 unchanged lines hidden --- |