File: filter.h

package info (click to toggle)
ndctl 82-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,460 kB
  • sloc: ansic: 42,027; sh: 3,974; makefile: 28
file content (12 lines) | stat: -rw-r--r-- 445 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX-License-Identifier: GPL-2.0 */
/* Copyright (C) 2015-2020 Intel Corporation. All rights reserved. */
#ifndef _DAXCTL_UTIL_FILTER_H_
#define _DAXCTL_UTIL_FILTER_H_
#include <stdbool.h>
#include <ccan/list/list.h>

struct daxctl_dev *util_daxctl_dev_filter(struct daxctl_dev *dev,
		const char *ident);
struct daxctl_region *util_daxctl_region_filter(struct daxctl_region *region,
		const char *ident);
#endif /* _DAXCTL_UTIL_FILTER_H_ */