cregit-Linux how code gets into the kernel

Release 4.15 include/linux/fs_stack.h

Directory: include/linux
/* 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 <linux/fs.h>

/* 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; }

Contributors

PersonTokensPropCommitsCommitProp
Josef 'Jeff' Sipek26100.00%1100.00%
Total26100.00%1100.00%


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; }

Contributors

PersonTokensPropCommitsCommitProp
Josef 'Jeff' Sipek42100.00%1100.00%
Total42100.00%1100.00%

#endif /* _LINUX_FS_STACK_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
Josef 'Jeff' Sipek11499.13%150.00%
Greg Kroah-Hartman10.87%150.00%
Total115100.00%2100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.