mirror of
https://github.com/koverstreet/bcachefs-tools.git
synced 2025-02-03 00:00:07 +03:00
14 lines
296 B
C
14 lines
296 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,
|
|
NEED_SNAPSHOT_CLEANUP,
|
|
};
|
|
|
|
#endif /* _BCACHFES_ERRCODE_H */
|