Contributors: 8
	  
        
          | Author | 
          Tokens | 
          Token Proportion | 
          Commits | 
          Commit Proportion | 
        
	  
	  
        
        
          | Davide Libenzi | 
          95 | 
          62.91% | 
          2 | 
          22.22% | 
        
        
          | Daniel Colascione | 
          20 | 
          13.25% | 
          1 | 
          11.11% | 
        
        
          | Ulrich Drepper | 
          15 | 
          9.93% | 
          1 | 
          11.11% | 
        
        
          | Dawid Osuchowski | 
          11 | 
          7.28% | 
          1 | 
          11.11% | 
        
        
          | Paul Moore | 
          4 | 
          2.65% | 
          1 | 
          11.11% | 
        
        
          | Tomasz Stanislawski | 
          3 | 
          1.99% | 
          1 | 
          11.11% | 
        
        
          | Paolo Bonzini | 
          2 | 
          1.32% | 
          1 | 
          11.11% | 
        
        
          | Greg Kroah-Hartman | 
          1 | 
          0.66% | 
          1 | 
          11.11% | 
        
	  
	  
        
          | Total | 
          151 | 
           | 
          9 | 
           | 
	    
	  
    
 
/* 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
#include <linux/types.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_fmode(const char *name,
				const struct file_operations *fops,
				void *priv, int flags, fmode_t f_mode);
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 */