/
githubmirror
/
ndctl
Обзор
Документация
Войти
/
githubmirror
/
ndctl
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cxl/json.h
30 строк
1 KB
Vishal Verma
cxl-cli: add region listing support
16 авг 2022, 20:48
16 авг 2022, 20:48
c0f2b36
Код
Авторство
О чём код?
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (C) 2015-2022 Intel Corporation. All rights reserved. */ #ifndef __CXL_UTIL_JSON_H__ #define __CXL_UTIL_JSON_H__ struct cxl_memdev; struct json_object *util_cxl_memdev_to_json(struct cxl_memdev *memdev, unsigned long flags); struct cxl_bus; struct json_object *util_cxl_bus_to_json(struct cxl_bus *bus, unsigned long flags); struct cxl_port; struct json_object *util_cxl_port_to_json(struct cxl_port *port, unsigned long flags); struct json_object *util_cxl_endpoint_to_json(struct cxl_endpoint *endpoint, unsigned long flags); struct json_object *util_cxl_decoder_to_json(struct cxl_decoder *decoder, unsigned long flags); struct json_object *util_cxl_region_to_json(struct cxl_region *region, unsigned long flags); void util_cxl_mappings_append_json(struct json_object *jregion, struct cxl_region *region, unsigned long flags); void util_cxl_targets_append_json(struct json_object *jdecoder, struct cxl_decoder *decoder, const char *ident, const char *serial, unsigned long flags); void util_cxl_dports_append_json(struct json_object *jport, struct cxl_port *port, const char *ident, const char *serial, unsigned long flags); #endif /* __CXL_UTIL_JSON_H__ */