Renamed tailp -> ptail

This is mainly just to match pcache.

Which is where I would put ptail if these two didn't have annoyingly
different flush semantics.
This commit is contained in:
Christopher Haster
2025-02-13 02:48:48 -06:00
parent 19a23c7788
commit 2b3fdffe4c
2 changed files with 22 additions and 22 deletions
+3 -3
View File
@@ -798,11 +798,11 @@ typedef struct lfsr_grm {
} lfsr_grm_t;
#ifdef LFS_CKPARITY
typedef struct lfsr_tailp {
typedef struct lfsr_ptail {
lfs_block_t block;
// sign(off) => tail parity
lfs_size_t off;
} lfsr_tailp_t;
} lfsr_ptail_t;
#endif
// The littlefs filesystem type
@@ -837,7 +837,7 @@ typedef struct lfs {
} pcache;
#ifdef LFS_CKPARITY
lfsr_tailp_t tailp;
lfsr_ptail_t ptail;
#endif
struct lfs_lookahead {