Contributors: 7
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Davide Libenzi |
80 |
66.12% |
2 |
25.00% |
Daniel Colascione |
20 |
16.53% |
1 |
12.50% |
Ulrich Drepper |
12 |
9.92% |
1 |
12.50% |
Tomasz Stanislawski |
3 |
2.48% |
1 |
12.50% |
Paul Moore |
3 |
2.48% |
1 |
12.50% |
Paolo Bonzini |
2 |
1.65% |
1 |
12.50% |
Greg Kroah-Hartman |
1 |
0.83% |
1 |
12.50% |
Total |
121 |
|
8 |
|
/* 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_create_getfile(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_create_getfd(const char *name,
const struct file_operations *fops,
void *priv, int flags,
const struct inode *context_inode);
#endif /* _LINUX_ANON_INODES_H */