mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-31 16:38:12 +00:00
f85d208658
Based on 1 normalized pattern(s): this file is subject to the terms and conditions of version 2 of the gnu general public license see the file copying in the main directory of the linux distribution for more details extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 5 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081200.872755311@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
50 lines
1.2 KiB
C
50 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (C) 2016 Parav Pandit <pandit.parav@gmail.com>
|
|
*/
|
|
|
|
#ifndef _CGROUP_RDMA_H
|
|
#define _CGROUP_RDMA_H
|
|
|
|
#include <linux/cgroup.h>
|
|
|
|
enum rdmacg_resource_type {
|
|
RDMACG_RESOURCE_HCA_HANDLE,
|
|
RDMACG_RESOURCE_HCA_OBJECT,
|
|
RDMACG_RESOURCE_MAX,
|
|
};
|
|
|
|
#ifdef CONFIG_CGROUP_RDMA
|
|
|
|
struct rdma_cgroup {
|
|
struct cgroup_subsys_state css;
|
|
|
|
/*
|
|
* head to keep track of all resource pools
|
|
* that belongs to this cgroup.
|
|
*/
|
|
struct list_head rpools;
|
|
};
|
|
|
|
struct rdmacg_device {
|
|
struct list_head dev_node;
|
|
struct list_head rpools;
|
|
char *name;
|
|
};
|
|
|
|
/*
|
|
* APIs for RDMA/IB stack to publish when a device wants to
|
|
* participate in resource accounting
|
|
*/
|
|
void rdmacg_register_device(struct rdmacg_device *device);
|
|
void rdmacg_unregister_device(struct rdmacg_device *device);
|
|
|
|
/* APIs for RDMA/IB stack to charge/uncharge pool specific resources */
|
|
int rdmacg_try_charge(struct rdma_cgroup **rdmacg,
|
|
struct rdmacg_device *device,
|
|
enum rdmacg_resource_type index);
|
|
void rdmacg_uncharge(struct rdma_cgroup *cg,
|
|
struct rdmacg_device *device,
|
|
enum rdmacg_resource_type index);
|
|
#endif /* CONFIG_CGROUP_RDMA */
|
|
#endif /* _CGROUP_RDMA_H */
|