cregit-Linux how code gets into the kernel

Release 4.15 security/selinux/ss/symtab.h

/* SPDX-License-Identifier: GPL-2.0 */
/*
 * A symbol table (symtab) maintains associations between symbol
 * strings and datum values.  The type of the datum values
 * is arbitrary.  The symbol table type is implemented
 * using the hash table type (hashtab).
 *
 * Author : Stephen Smalley, <sds@tycho.nsa.gov>
 */
#ifndef _SS_SYMTAB_H_

#define _SS_SYMTAB_H_

#include "hashtab.h"


struct symtab {
	
struct hashtab *table;	/* hash table (keyed on a string) */
	
u32 nprim;		/* number of primary names in table */
};

int symtab_init(struct symtab *s, unsigned int size);

#endif	/* _SS_SYMTAB_H_ */



Overall Contributors

PersonTokensPropCommitsCommitProp
Andrew Morton4095.24%133.33%
Stephen D. Smalley12.38%133.33%
Greg Kroah-Hartman12.38%133.33%
Total42100.00%3100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.