Contributors: 6
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Davide Libenzi |
80 |
66.12% |
2 |
28.57% |
Daniel Colascione |
21 |
17.36% |
1 |
14.29% |
Ulrich Drepper |
12 |
9.92% |
1 |
14.29% |
Paul Moore |
4 |
3.31% |
1 |
14.29% |
Tomasz Stanislawski |
3 |
2.48% |
1 |
14.29% |
Greg Kroah-Hartman |
1 |
0.83% |
1 |
14.29% |
Total |
121 |
|
7 |
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* include/linux/anon_inodes.h
*
* Copyright (C) 2007 Davide Libenzi <davidel@xmailserver.org>
*
*/
#ifndef _LINUX_ANON_INODES_H
#define _LINUX_ANON_INODES_H
struct file_operations;
struct inode;
struct file *anon_inode_getfile(const char *name,
const struct file_operations *fops,
void *priv, int flags);
struct file *anon_inode_getfile_secure(const char *name,
const struct file_operations *fops,
void *priv, int flags,
const struct inode *context_inode);
int anon_inode_getfd(const char *name, const struct file_operations *fops,
void *priv, int flags);
int anon_inode_getfd_secure(const char *name,
const struct file_operations *fops,
void *priv, int flags,
const struct inode *context_inode);
#endif /* _LINUX_ANON_INODES_H */