cregit-Linux how code gets into the kernel

Release 4.10 fs/xfs/xfs_acl.h

Directory: fs/xfs
/*
 * Copyright (c) 2001-2005 Silicon Graphics, Inc.
 * All Rights Reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it would be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write the Free Software Foundation,
 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */
#ifndef __XFS_ACL_H__

#define __XFS_ACL_H__

struct inode;
struct posix_acl;

#ifdef CONFIG_XFS_POSIX_ACL
extern struct posix_acl *xfs_get_acl(struct inode *inode, int type);
extern int xfs_set_acl(struct inode *inode, struct posix_acl *acl, int type);
#else

static inline struct posix_acl *xfs_get_acl(struct inode *inode, int type) { return NULL; }

Contributors

PersonTokensPropCommitsCommitProp
markus trippelsdorfmarkus trippelsdorf1470.00%133.33%
christoph hellwigchristoph hellwig630.00%266.67%
Total20100.00%3100.00%

# define xfs_set_acl NULL #endif /* CONFIG_XFS_POSIX_ACL */ extern void xfs_forget_acl(struct inode *inode, const char *name, int xflags); #endif /* __XFS_ACL_H__ */

Overall Contributors

PersonTokensPropCommitsCommitProp
christoph hellwigchristoph hellwig6565.66%450.00%
andreas gruenbacherandreas gruenbacher1818.18%112.50%
markus trippelsdorfmarkus trippelsdorf1414.14%112.50%
stephen lordstephen lord11.01%112.50%
nathan scottnathan scott11.01%112.50%
Total99100.00%8100.00%
Directory: fs/xfs
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.