xfs_acl.c (e3c55d406bd8df1a878546002c93db90c42be10c) | xfs_acl.c (a4fbe6ab1e7abecf42b75e9c73701ed33b4ab03b) |
---|---|
1/* 2 * Copyright (c) 2008, Christoph Hellwig 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) 2008, Christoph Hellwig 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" | 20#include "xfs_log_format.h" 21#include "xfs_trans_resv.h" |
21#include "xfs_acl.h" 22#include "xfs_attr.h" 23#include "xfs_bmap_btree.h" 24#include "xfs_inode.h" | |
25#include "xfs_ag.h" 26#include "xfs_sb.h" 27#include "xfs_mount.h" | 22#include "xfs_ag.h" 23#include "xfs_sb.h" 24#include "xfs_mount.h" |
25#include "xfs_inode.h" 26#include "xfs_acl.h" 27#include "xfs_attr.h" |
|
28#include "xfs_trace.h" 29#include <linux/slab.h> 30#include <linux/xattr.h> 31#include <linux/posix_acl_xattr.h> 32 33 34/* 35 * Locking scheme: --- 406 unchanged lines hidden --- | 28#include "xfs_trace.h" 29#include <linux/slab.h> 30#include <linux/xattr.h> 31#include <linux/posix_acl_xattr.h> 32 33 34/* 35 * Locking scheme: --- 406 unchanged lines hidden --- |