Skip to content

Commit

Permalink
lxfs: added dirty flag to cache structure
Browse files Browse the repository at this point in the history
  • Loading branch information
jewelcodes committed Oct 26, 2024
1 parent 6cec998 commit 3acdc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/lxfs/src/include/lxfs/lxfs.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define CACHE_SIZE 128 /* todo: maybe don't hard code this */

typedef struct {
int valid;
int valid, dirty;
uint64_t tag;
void *data;
} Cache;
Expand Down

0 comments on commit 3acdc12

Please sign in to comment.