10 lines
223 B
C
10 lines
223 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
|
||
|
#ifndef __FAST_COMMIT_H__
|
||
|
#define __FAST_COMMIT_H__
|
||
|
|
||
|
/* Number of blocks in journal area to allocate for fast commits */
|
||
|
#define EXT4_NUM_FC_BLKS 256
|
||
|
|
||
|
#endif /* __FAST_COMMIT_H__ */
|