124 Star 0 Fork 2

openEuler/libwd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
wd_bmm.h 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
dogsheng 提交于 2019-12-24 23:59 . Package init
/*
* Copyright (C) 2019. Huawei Technologies Co.,Ltd.All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _WD_BMM_H
#define _WD_BMM_H
/* Memory pool creating parameters */
struct wd_blkpool_setup {
__u32 block_size; /* Block buffer size */
__u32 block_num; /* Block buffer number */
__u32 align_size; /* Block buffer startging address align size */
struct wd_mm_ops ops; /* memory from user if don't use WD memory */
};
extern void *wd_blkpool_create(struct wd_queue *q,
struct wd_blkpool_setup *setup);
extern void wd_blkpool_destroy(void *pool);
extern void *wd_alloc_blk(void *pool);
extern void wd_free_blk(void *pool, void *blk);
extern int wd_get_free_blk_num(void *pool);
extern int wd_blk_alloc_failures(void *pool);
extern void *wd_blk_dma_map(void *pool, void *blk);
extern void wd_blk_dma_unmap(void *pool, void *blk_dma, void *blk);
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/openeuler/libwd.git
git@gitee.com:openeuler/libwd.git
openeuler
libwd
libwd
master

搜索帮助