aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_attr.h
Commit message (Expand)AuthorAge
* xfs: convert attr to use unsigned namesDave Chinner2010-01-19
* xfs: make several more functions staticEric Sandeen2010-01-15
* xfs: event tracing supportChristoph Hellwig2009-12-15
* xfs: rename xfs_attr_fetch to xfs_attr_get_intChristoph Hellwig2009-12-11
* [XFS] Move attr log alloc size calculator to another function.Niv Sardi2008-08-13
* [XFS] attrmulti cleanupChristoph Hellwig2008-07-28
* [XFS] Fix up warning for xfs_vn_listxatt's call of list_one_attr() withTim Shimmin2008-07-28
* [XFS] Switches xfs_vn_listxattr to set it's put_listent callback directlyChristoph Hellwig2008-07-28
* [XFS] Use the generic xattr methods.Lachlan McIlroy2008-07-28
* [XFS] Kill attr_capable checks as already done in xattr_permission.Christoph Hellwig2008-07-28
* [XFS] Cleanup xfs_attr a bit with xfs_name and remove credBarry Naujok2008-04-29
* [XFS] kill struct bhv_vnodeChristoph Hellwig2007-10-15
* [XFS] decontaminate vnode operations from behavior detailsChristoph Hellwig2007-10-15
* [XFS] Add EA list callbacks for xfs kernel use. Cleanup some namespaceTim Shimmin2006-09-27
* [XFS] Resolve a namespace collision on vnode/vnodeops for FreeBSD porters.Nathan Scott2006-06-09
* [XFS] Update license/copyright notices to match the prefered SGINathan Scott2005-11-01
* [XFS] Make some extended attributes routines take const parameters, forNathan Scott2005-11-01
* [XFS] mark various symbols static Patch from Adrian BunkChristoph Hellwig2005-06-21
* Linux-2.6.12-rc2v2.6.12-rc2Linus Torvalds2005-04-16
="hl opt">++; /* * OK, now restart the process with the interpreter's inode. * Note that we use open_exec() as the name is now in kernel * space, and we don't need to copy it. */ file = open_exec(interp); if (IS_ERR(file)) return PTR_ERR(file); bprm->file = file; retval = prepare_binprm(bprm); if (retval < 0) return retval; return search_binary_handler(bprm, regs); } static struct linux_binfmt em86_format = { .module = THIS_MODULE, .load_binary = load_em86, }; static int __init init_em86_binfmt(void) { return register_binfmt(&em86_format); } static void __exit exit_em86_binfmt(void) { unregister_binfmt(&em86_format); } core_initcall(init_em86_binfmt); module_exit(exit_em86_binfmt); MODULE_LICENSE("GPL");