/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _LINUX_FS_STACK_H #define _LINUX_FS_STACK_H /* This file defines generic functions used primarily by stackable * filesystems; none of these functions require i_mutex to be held. */ #include /* externs for fs/stack.c */ extern void fsstack_copy_attr_all(struct inode *dest, const struct inode *src); extern void fsstack_copy_inode_size(struct inode *dst, struct inode *src); /* inlines */ static inline void fsstack_copy_attr_atime(struct inode *dest, const struct inode *src) { dest->i_atime = src->i_atime; } static inline void fsstack_copy_attr_times(struct inode *dest, const struct inode *src) { dest->i_atime = src->i_atime; dest->i_mtime = src->i_mtime; dest->i_ctime = src->i_ctime; } #endif /* _LINUX_FS_STACK_H */ x221E-v0.0.1-v6.19'>0x221E-v0.0.1-v6.19 Hosts the 0x221E linux distro kernel.Ubuntu
summaryrefslogtreecommitdiff
path: root/include/linux/init.h
AgeCommit message (Expand)Author
2015-07-05module: relocate module_init from init.h to module.hPaul Gortmaker
2015-06-16init: delete the __cpuinit related stubsPaul Gortmaker
2015-03-05init.h: Clean up the __setup()/early_param() macrosIngo Molnar
2015-03-05init.h: Add early_param_on_off()Luis R. Rodriguez
2014-05-27init.h: Update initcall_sync variants to fix build errorsTony Lindgren
2014-02-13lto, workaround: Add workaround for initcall reorderingAndi Kleen
2013-12-10init.h: add missing initcall variantsRandy Dunlap
2013-11-13init.h: document the existence of __initconstGeert Uytterhoeven
2013-09-11initmpfs: move rootfs code from fs/ramfs/ to init/Rob Landley
2013-06-26init.h: remove __cpuinit sections from the kernelPaul Gortmaker
2013-01-23Merge branch 'master' into for-3.9-asyncTejun Heo
2013-01-18init, block: try to load default elevator module early during bootTejun Heo
2013-01-10Remove __dev* markings from init.hGreg Kroah-Hartman
2012-12-17include/linux/init.h: use the stringify operator for the __define_initcall macroMatthew Leach
2012-11-30init.h: Remove __dev* sections from the kernelGreg Kroah-Hartman
2012-10-06sections: disable const sections for PA-RISC v2Andi Kleen
2012-07-27init: add comments to keep initcall-names in sync with initcall levelsJim Cromie
2012-01-13module_param: make bool parameters really bool (core code)Rusty Russell