Searched refs:tags (Results 1 - 25 of 29) sorted by relevance

12

/u-boot/fs/yaffs2/
H A Dyaffs_tagscompat.h22 const u8 *data, const struct yaffs_ext_tags *tags);
25 u8 *data, struct yaffs_ext_tags *tags);
32 void yaffs_calc_tags_ecc(struct yaffs_tags *tags);
33 int yaffs_check_tags_ecc(struct yaffs_tags *tags);
H A Dyaffs_nand.c21 u8 *buffer, struct yaffs_ext_tags *tags)
29 /* If there are no tags provided use local tags. */
30 if (!tags)
31 tags = &local_tags;
36 tags);
39 flash_chunk, buffer, tags);
40 if (tags && tags->ecc_result > YAFFS_ECC_RESULT_NO_ERROR) {
53 const u8 *buffer, struct yaffs_ext_tags *tags)
20 yaffs_rd_chunk_tags_nand(struct yaffs_dev *dev, int nand_chunk, u8 *buffer, struct yaffs_ext_tags *tags) argument
51 yaffs_wr_chunk_tags_nand(struct yaffs_dev *dev, int nand_chunk, const u8 *buffer, struct yaffs_ext_tags *tags) argument
[all...]
H A Dyaffs_mtdif2.h23 const struct yaffs_ext_tags *tags);
25 u8 *data, struct yaffs_ext_tags *tags);
H A Dyaffs_summary.h26 struct yaffs_ext_tags *tags,
29 struct yaffs_ext_tags *tags,
H A Dyaffs_nand.h21 u8 *buffer, struct yaffs_ext_tags *tags);
25 const u8 *buffer, struct yaffs_ext_tags *tags);
H A Dyaffs_nandemul2k.h25 const struct yaffs_ext_tags *tags);
28 struct yaffs_ext_tags *tags);
H A Dyaffs_nandif.c28 /* NB For use with inband tags....
30 * we can also use it to load the tags.
34 const struct yaffs_ext_tags *tags)
44 "nandmtd2_WriteChunkWithTagsToNAND chunk %d data %p tags %p",
45 nand_chunk, data, tags);
48 /* For yaffs2 writing there must be both data and tags.
49 * If we're using inband tags, then the tags are stuffed into
58 yaffs_pack_tags2_tags_only(pt2tp, tags);
62 yaffs_pack_tags2(&pt, tags, !de
32 ynandif_WriteChunkWithTagsToNAND(struct yaffs_dev *dev, int nand_chunk, const u8 *data, const struct yaffs_ext_tags *tags) argument
74 ynandif_ReadChunkWithTagsFromNAND(struct yaffs_dev *dev, int nand_chunk, u8 *data, struct yaffs_ext_tags *tags) argument
167 struct yaffs_ext_tags tags; local
[all...]
H A Dyaffs_tagscompat.c31 void yaffs_calc_tags_ecc(struct yaffs_tags *tags) argument
34 unsigned char *b = ((union yaffs_tags_union *)tags)->as_bytes;
39 tags->ecc = 0;
48 tags->ecc = ecc;
51 int yaffs_check_tags_ecc(struct yaffs_tags *tags) argument
53 unsigned ecc = tags->ecc;
55 yaffs_calc_tags_ecc(tags);
57 ecc ^= tags->ecc;
61 unsigned char *b = ((union yaffs_tags_union *)tags)->as_bytes;
68 yaffs_calc_tags_ecc(tags);
285 struct yaffs_tags tags; local
317 struct yaffs_tags tags; local
[all...]
H A Dyaffs_mtdif2.c37 /* NB For use with inband tags....
39 * that we can also use it to load the tags.
43 const struct yaffs_ext_tags *tags)
59 "nandmtd2_write_chunk_tags chunk %d data %p tags %p",
60 nand_chunk, data, tags);
64 /* For yaffs2 writing there must be both data and tags.
65 * If we're using inband tags, then the tags are stuffed into
68 if (!data || !tags)
76 yaffs_pack_tags2_tags_only(pt2tp, tags);
41 nandmtd2_write_chunk_tags(struct yaffs_dev *dev, int nand_chunk, const u8 *data, const struct yaffs_ext_tags *tags) argument
95 nandmtd2_read_chunk_tags(struct yaffs_dev *dev, int nand_chunk, u8 *data, struct yaffs_ext_tags *tags) argument
[all...]
H A Dyaffs_flashif.h25 const u8 *data, const struct yaffs_ext_tags *tags);
29 u8 *data, struct yaffs_ext_tags *tags);
H A Dyaffs_flashif2.h25 const u8 *data, const struct yaffs_ext_tags *tags);
29 u8 *data, struct yaffs_ext_tags *tags);
H A Dyaffs_yaffs1.c25 struct yaffs_ext_tags tags; local
95 /* Read the tags and decide what to do */
98 yaffs_rd_chunk_tags_nand(dev, chunk, NULL, &tags);
102 if (tags.ecc_result == YAFFS_ECC_RESULT_UNFIXED ||
103 tags.is_deleted) {
109 } else if (!tags.chunk_used) {
134 } else if (tags.chunk_id > 0) {
142 tags.obj_id,
153 (in, tags.chunk_id, chunk, 1))
158 (tags
[all...]
H A Dyaffs_summary.c14 /* Summaries write the useful part of the tags for the chunks in a block into an
16 * Reading the summaries gives all the tags for the block in one read. Much
19 * Chunks holding summaries are marked with tags making it look like
34 * The summary is built up in an array of summary tags.
40 /* Summary tags don't need the sequence number because that is redundant. */
52 unsigned sum; /* Just add up all the bytes in the tags */
121 struct yaffs_ext_tags tags; local
136 memset(&tags, 0, sizeof(struct yaffs_ext_tags));
137 tags.obj_id = YAFFS_OBJECTID_SUMMARY;
138 tags
183 struct yaffs_ext_tags tags; local
247 yaffs_summary_add(struct yaffs_dev *dev, struct yaffs_ext_tags *tags, int chunk_in_nand) argument
276 yaffs_summary_fetch(struct yaffs_dev *dev, struct yaffs_ext_tags *tags, int chunk_in_block) argument
[all...]
H A Dyaffs_checkptrw.c101 struct yaffs_ext_tags tags; local
114 NULL, &tags);
117 i, tags.obj_id, tags.seq_number,
118 tags.ecc_result);
120 if (tags.seq_number == YAFFS_SEQUENCE_CHECKPOINT_DATA) {
122 dev->checkpt_next_block = tags.obj_id;
207 struct yaffs_ext_tags tags; local
217 tags.is_deleted = 0;
218 tags
292 struct yaffs_ext_tags tags; local
[all...]
H A Dyaffs_verify.c162 * Verify the object header. oh must be valid, but obj and tags may be NULL in
166 struct yaffs_ext_tags *tags, int parent_check)
171 if (!(tags && obj && oh)) {
173 "Verifying object header tags %p obj %p oh %p",
174 tags, obj, oh);
182 tags->obj_id, oh->type);
184 if (tags->obj_id != obj->obj_id)
187 tags->obj_id, obj->obj_id);
195 if (parent_check && tags->obj_id > 1 && !obj->parent)
198 tags
165 yaffs_verify_oh(struct yaffs_obj *obj, struct yaffs_obj_hdr *oh, struct yaffs_ext_tags *tags, int parent_check) argument
230 struct yaffs_ext_tags tags; local
348 struct yaffs_ext_tags tags; local
[all...]
H A Dyaffs_yaffs2.c949 struct yaffs_ext_tags tags; local
957 yaffs_summary_fetch(dev, &tags, chunk_in_block);
958 tags.seq_number = bi->seq_number;
961 if (!summary_available || tags.obj_id == 0) {
962 yaffs_rd_chunk_tags_nand(dev, chunk, NULL, &tags);
970 if (!tags.chunk_used) {
1018 } else if (tags.ecc_result ==
1024 } else if (tags.obj_id > YAFFS_MAX_OBJECT_ID ||
1025 tags.chunk_id > YAFFS_MAX_CHUNK_ID ||
1026 tags
[all...]
H A Dyaffs_verify.h28 struct yaffs_ext_tags *tags, int parent_check);
H A Dyaffs_guts.c221 const struct yaffs_ext_tags *tags)
226 const struct yaffs_ext_tags *tags)
317 struct yaffs_ext_tags tags; local
319 yaffs_rd_chunk_tags_nand(dev, nand_chunk, data, &tags);
321 if (tags.ecc_result > YAFFS_ECC_RESULT_NO_ERROR)
325 tags.chunk_used) {
340 struct yaffs_ext_tags *tags)
348 temp_tags.obj_id != tags->obj_id ||
349 temp_tags.chunk_id != tags->chunk_id ||
350 temp_tags.n_bytes != tags
219 yaffs_handle_chunk_wr_ok(struct yaffs_dev *dev, int nand_chunk, const u8 *data, const struct yaffs_ext_tags *tags) argument
225 yaffs_handle_chunk_update(struct yaffs_dev *dev, int nand_chunk, const struct yaffs_ext_tags *tags) argument
337 yaffs_verify_chunk_written(struct yaffs_dev *dev, int nand_chunk, const u8 *data, struct yaffs_ext_tags *tags) argument
501 yaffs_write_new_chunk(struct yaffs_dev *dev, const u8 *data, struct yaffs_ext_tags *tags, int use_reserver) argument
619 struct yaffs_ext_tags tags; local
950 yaffs_tags_match(const struct yaffs_ext_tags *tags, int obj_id, int chunk_obj) argument
959 yaffs_find_chunk_in_group(struct yaffs_dev *dev, int the_chunk, struct yaffs_ext_tags *tags, int obj_id, int inode_chunk) argument
987 yaffs_find_chunk_in_file(struct yaffs_obj *in, int inode_chunk, struct yaffs_ext_tags *tags) argument
1014 yaffs_find_del_file_chunk(struct yaffs_obj *in, int inode_chunk, struct yaffs_ext_tags *tags) argument
2391 struct yaffs_ext_tags tags; local
2930 struct yaffs_ext_tags tags; local
3091 struct yaffs_ext_tags tags; local
3164 struct yaffs_ext_tags tags; local
[all...]
/u-boot/board/ste/stemmy/
H A Dstemmy.c33 const struct tag *tags = (const struct tag *)fw_atags; local
35 if (tags->hdr.tag != ATAG_CORE) {
36 log_err("Invalid atags: tag 0x%x at %p\n", tags->hdr.tag, tags);
40 return tags;
45 const struct tag *t, *tags = fw_atags_get(); local
47 if (!tags)
50 for_each_tag(t, tags) {
63 const struct tag *t, *tags = fw_atags_get(); local
66 if (!tags)
141 copy_atags(const struct tag *tags) argument
[all...]
/u-boot/dts/upstream/scripts/
H A Dcronjob28 if ! git show-ref --quiet --verify refs/tags/v${LATEST_VERSION} ; then
31 if ! git show-ref --quiet --verify refs/tags/v${LATEST_VERSION}-dts ; then
70 git fetch --tags "$UPSTREAM_GIT" master
79 #git push --dry-run origin --tags
H A Dmerge-new-release.sh40 export GIT_COMMITTER_DATE="$(git for-each-ref --format='%(taggerdate)' "refs/tags/${v%-dts}")"
/u-boot/tools/patman/
H A Dcommit.py20 tags: List of maintainer tag strings
27 rtags: Response tags (e.g. Reviewed-by) collected by the commit, dict:
38 self.tags = []
64 """Create a list of subject tags in the commit
66 Subject tags look like this:
70 Here the tags are propounder and fort. Multiple tags are supported.
82 self.tags.append(tag)
H A Dfunc_test.py557 """Test collection of tags in a patchstream"""
924 # the status module after setting up tags in the commits, checking that
932 # Check that the tags are picked up on the first patch
944 # Now add some tags to the commit, which means they should not appear as
945 # 'new' tags when scanning comments
1069 # result in new review tags that are collected and added to the commits
1095 # Check that the destination branch has the new tags
1107 # see the new tags immediately below the old ones.
1116 # reviewed-by tags
1271 # the status module after setting up tags i
[all...]
/u-boot/arch/arm/include/asm/ti-common/
H A Dkeystone_nav.h148 u32 tags; member in struct:rx_flow_regs
/u-boot/drivers/dma/
H A Dkeystone_nav.c170 writel(0, &pktdma->rx_flows[j].tags);
235 writel(0, &pktdma->rx_flows[pktdma->rx_flow].tags);

Completed in 208 milliseconds

12