yaffs_rtems: Add yaffs_cache to RTEMS makefile and tweak RTEMS
[yaffs2.git] / yaffs_packedtags1.h
1 /*
2  * YAFFS: Yet another Flash File System . A NAND-flash specific file system.
3  *
4  * Copyright (C) 2002-2018 Aleph One Ltd.
5  *
6  * Created by Charles Manning <charles@aleph1.co.uk>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License version 2.1 as
10  * published by the Free Software Foundation.
11  *
12  * Note: Only YAFFS headers are LGPL, YAFFS C code is covered by GPL.
13  */
14
15 /* This is used to pack YAFFS1 tags, not YAFFS2 tags. */
16
17 #ifndef __YAFFS_PACKEDTAGS1_H__
18 #define __YAFFS_PACKEDTAGS1_H__
19
20 #include "yaffs_guts.h"
21
22 struct yaffs_packed_tags1 {
23         u32 chunk_id:20;
24         u32 serial_number:2;
25         u32 n_bytes:10;
26         u32 obj_id:18;
27         u32 ecc:12;
28         u32 deleted:1;
29         u32 unused_stuff:1;
30         unsigned should_be_ff;
31
32 };
33
34 void yaffs_pack_tags1(struct yaffs_packed_tags1 *pt,
35                       const struct yaffs_ext_tags *t);
36 void yaffs_unpack_tags1(struct yaffs_ext_tags *t,
37                         const struct yaffs_packed_tags1 *pt);
38 #endif