Linux Audio

Check our new training course

Loading...
v6.9.4
 1// SPDX-License-Identifier: GPL-2.0
 2/*
 3 * Copyright (c) 2006-2007 Silicon Graphics, Inc.
 4 * All Rights Reserved.
 
 
 
 
 
 
 
 
 
 
 
 
 
 5 */
 6#ifndef __XFS_MRU_CACHE_H__
 7#define __XFS_MRU_CACHE_H__
 8
 9struct xfs_mru_cache;
10
11struct xfs_mru_cache_elem {
12	struct list_head list_node;
13	unsigned long	key;
14};
15
16/* Function pointer type for callback to free a client's data pointer. */
17typedef void (*xfs_mru_cache_free_func_t)(void *, struct xfs_mru_cache_elem *);
18
19int xfs_mru_cache_init(void);
20void xfs_mru_cache_uninit(void);
21int xfs_mru_cache_create(struct xfs_mru_cache **mrup, void *data,
22		unsigned int lifetime_ms, unsigned int grp_count,
23		xfs_mru_cache_free_func_t free_func);
24void xfs_mru_cache_destroy(struct xfs_mru_cache *mru);
25int xfs_mru_cache_insert(struct xfs_mru_cache *mru, unsigned long key,
26		struct xfs_mru_cache_elem *elem);
27struct xfs_mru_cache_elem *
28xfs_mru_cache_remove(struct xfs_mru_cache *mru, unsigned long key);
29void xfs_mru_cache_delete(struct xfs_mru_cache *mru, unsigned long key);
30struct xfs_mru_cache_elem *
31xfs_mru_cache_lookup(struct xfs_mru_cache *mru, unsigned long key);
32void xfs_mru_cache_done(struct xfs_mru_cache *mru);
33
34#endif /* __XFS_MRU_CACHE_H__ */
v4.17
 
 1/*
 2 * Copyright (c) 2006-2007 Silicon Graphics, Inc.
 3 * All Rights Reserved.
 4 *
 5 * This program is free software; you can redistribute it and/or
 6 * modify it under the terms of the GNU General Public License as
 7 * published by the Free Software Foundation.
 8 *
 9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18#ifndef __XFS_MRU_CACHE_H__
19#define __XFS_MRU_CACHE_H__
20
21struct xfs_mru_cache;
22
23struct xfs_mru_cache_elem {
24	struct list_head list_node;
25	unsigned long	key;
26};
27
28/* Function pointer type for callback to free a client's data pointer. */
29typedef void (*xfs_mru_cache_free_func_t)(void *, struct xfs_mru_cache_elem *);
30
31int xfs_mru_cache_init(void);
32void xfs_mru_cache_uninit(void);
33int xfs_mru_cache_create(struct xfs_mru_cache **mrup, void *data,
34		unsigned int lifetime_ms, unsigned int grp_count,
35		xfs_mru_cache_free_func_t free_func);
36void xfs_mru_cache_destroy(struct xfs_mru_cache *mru);
37int xfs_mru_cache_insert(struct xfs_mru_cache *mru, unsigned long key,
38		struct xfs_mru_cache_elem *elem);
39struct xfs_mru_cache_elem *
40xfs_mru_cache_remove(struct xfs_mru_cache *mru, unsigned long key);
41void xfs_mru_cache_delete(struct xfs_mru_cache *mru, unsigned long key);
42struct xfs_mru_cache_elem *
43xfs_mru_cache_lookup(struct xfs_mru_cache *mru, unsigned long key);
44void xfs_mru_cache_done(struct xfs_mru_cache *mru);
45
46#endif /* __XFS_MRU_CACHE_H__ */