mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 08:14:15 +08:00
13 lines
272 B
C
13 lines
272 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef _BCACHEFS_ERRCODE_H
|
||
|
#define _BCACHEFS_ERRCODE_H
|
||
|
|
||
|
enum {
|
||
|
/* Bucket allocator: */
|
||
|
OPEN_BUCKETS_EMPTY = 2048,
|
||
|
FREELIST_EMPTY, /* Allocator thread not keeping up */
|
||
|
INSUFFICIENT_DEVICES,
|
||
|
};
|
||
|
|
||
|
#endif /* _BCACHFES_ERRCODE_H */
|