blob: 3282ef9ab0ed8e1c1b0518e2bc6329cf8c4abe7c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/* SPDX-License-Identifier: BSD-3-Clause */
/* Copyright(c) 2007-2022 Intel Corporation */
/**
***************************************************************************
* @file icp_sal.h
*
* @ingroup SalCommon
*
* Functions for both user space and kernel space.
*
***************************************************************************/
#ifndef ICP_SAL_H
#define ICP_SAL_H
/*
* icp_sal_get_dc_error
*
* @description:
* This function returns the occurrences of compression errors specified
* in the input parameter
*
* @context
* This function is called from the user process context
* @assumptions
* None
* @sideEffects
* None
* @reentrant
* No
* @threadSafe
* No
* @param[in] dcError DC Error Type
*
* returns Number of failing requests of type dcError
*/
Cpa64U icp_sal_get_dc_error(Cpa8S dcError);
#endif
|