Searched refs:data_crc (Results 1 - 25 of 28) sorted by relevance

12

/linux-master/sound/soc/codecs/aw88395/
H A Daw88395_data_type.h98 u32 data_crc; member in struct:aw_cfg_dde
112 u32 data_crc; member in struct:aw_cfg_dde_v1
H A Daw88395_lib.c1089 if (act_crc8 != cfg_dde[i].data_crc) {
1090 dev_err(aw_dev->dev, "ddt_num[%d] act_crc8:0x%x != data_crc:0x%x",
1091 i, (u32)act_crc8, cfg_dde[i].data_crc);
1148 if (act_crc8 != cfg_dde[i].data_crc) {
1149 dev_err(aw_dev->dev, "ddt_num[%d] act_crc8:0x%x != data_crc 0x%x",
1150 i, (u32)act_crc8, cfg_dde[i].data_crc);
/linux-master/include/linux/ceph/
H A Dmsgr.h218 __le32 front_crc, middle_crc, data_crc; member in struct:ceph_msg_footer_old
223 __le32 front_crc, middle_crc, data_crc; member in struct:ceph_msg_footer
H A Dmessenger.h456 u32 data_crc; member in struct:ceph_connection_v2_info::__anon301::__anon302::__anon303
/linux-master/include/uapi/linux/
H A Djffs2.h156 jint32_t data_crc; /* CRC for the (compressed) data. */ member in struct:jffs2_raw_inode
171 jint32_t data_crc; member in struct:jffs2_raw_xattr
/linux-master/drivers/mtd/ubi/
H A Dubi-media.h176 * @data_crc: CRC checksum of the data stored in this logical eraseblock
220 * the @data_crc field of the copy (P1). So when UBI needs to pick one physical
244 * The @data_crc field contains the CRC checksum of the contents of the logical
249 * the @data_crc field. And of course, the @copy_flag is %in this case.
256 * contents and uses both @data_crc and @data_size fields. In this case, the
280 __be32 data_crc; member in struct:ubi_vid_hdr
400 * @data_crc: CRC over the fastmap data
411 __be32 data_crc; member in struct:ubi_fm_sb
H A Dattach.c442 uint32_t data_crc, crc; local
517 data_crc = be32_to_cpu(vid_hdr->data_crc);
519 if (crc != data_crc) {
521 pnum, crc, data_crc);
H A Deba.c686 crc = be32_to_cpu(vid_hdr->data_crc);
852 vid_hdr->data_crc = cpu_to_be32(crc);
1153 vid_hdr->data_crc = cpu_to_be32(crc);
1237 vid_hdr->data_crc = cpu_to_be32(crc);
1416 * @vid_hdr->copy_flag, @vid_hdr->data_size, and @vid_hdr->data_crc.
1421 vid_hdr->data_crc = cpu_to_be32(crc);
H A Dio.c894 int data_crc = be32_to_cpu(vid_hdr->data_crc); local
966 if (data_crc != 0) {
H A Dfastmap.c1038 tmp_crc = be32_to_cpu(fmsb2->data_crc);
1039 fmsb2->data_crc = 0;
1349 fmsb->data_crc = 0;
1350 fmsb->data_crc = cpu_to_be32(crc32(UBI_CRC32_INIT, fm_raw,
/linux-master/fs/jffs2/
H A Dxattr.h36 uint32_t data_crc; member in struct:jffs2_xattr_datum
H A Dread.c124 if (crc != je32_to_cpu(ri->data_crc)) {
126 je32_to_cpu(ri->data_crc), crc, ref_offset(fd->raw));
H A Dreadinode.c62 ref_offset(ref), tn->csize, tn->partial_crc, tn->data_crc, ofs - len, ofs, len);
107 if (crc != tn->data_crc) {
109 ref_offset(ref), tn->data_crc, crc);
802 if (len >= csize && unlikely(tn->partial_crc != je32_to_cpu(rd->data_crc))) {
804 ref_offset(ref), tn->partial_crc, je32_to_cpu(rd->data_crc));
841 tn->data_crc = je32_to_cpu(rd->data_crc);
H A Dgc.c653 if (je32_to_cpu(node->i.data_crc) != crc) {
656 je32_to_cpu(node->i.data_crc), crc);
832 ri.data_crc = cpu_to_je32(crc32(0, mdata, mdatalen));
1098 ri.data_crc = cpu_to_je32(0);
1382 ri.data_crc = cpu_to_je32(crc32(0, comprbuf, cdatalen));
H A Dxattr.c180 xd->data_crc = je32_to_cpu(rx.data_crc);
232 if (crc != xd->data_crc) {
235 ref_offset(xd->node), xd->data_crc, crc);
314 rx.data_crc = cpu_to_je32(crc32(0, vecs[1].iov_base, vecs[1].iov_len));
385 xd->data_crc = crc32(0, data, xd->name_len + 1 + xd->value_len);
H A Dfile.c178 ri.data_crc = cpu_to_je32(0);
H A Dwrite.c193 jffs2_dbg(1, "jffs2_write_dnode wrote node at 0x%08x(%d) with dsize 0x%x, csize 0x%x, node_crc 0x%08x, data_crc 0x%08x, totlen 0x%08x\n",
196 je32_to_cpu(ri->data_crc), je32_to_cpu(ri->totlen));
389 ri->data_crc = cpu_to_je32(crc32(0, comprbuf, cdatalen));
462 ri->data_crc = cpu_to_je32(0);
H A Ddir.c341 ri->data_crc = cpu_to_je32(crc32(0, target, targetlen));
501 ri->data_crc = cpu_to_je32(0);
677 ri->data_crc = cpu_to_je32(crc32(0, &dev, devlen));
H A Dnodelist.h233 uint32_t data_crc; member in struct:jffs2_tmp_dnode_info
H A Dfs.c135 ri->data_crc = cpu_to_je32(crc32(0, mdata, mdatalen));
137 ri->data_crc = cpu_to_je32(0);
/linux-master/drivers/target/iscsi/
H A Discsi_target.c543 &cmd->data_crc);
545 iov[niov].iov_base = &cmd->data_crc;
550 data_buf_len, hdr->opcode, cmd->data_crc);
617 cmd->data_crc = iscsit_do_crypto_hash_sg(conn->conn_tx_hash,
623 iov[iov_count].iov_base = &cmd->data_crc;
628 datain->length + cmd->padding, cmd->data_crc);
1415 u32 data_crc; local
1453 ahash_request_set_crypt(hash, &pad_sg, (u8 *)&data_crc,
1457 ahash_request_set_crypt(hash, NULL, (u8 *)&data_crc, 0);
1461 return data_crc;
1464 iscsit_do_crypto_hash_buf(struct ahash_request *hash, const void *buf, u32 payload_length, u32 padding, const void *pad_bytes, void *data_crc) argument
1663 u32 data_crc; local
1893 u32 checksum, data_crc, padding = 0; local
2299 u32 checksum = 0, data_crc = 0; local
2689 u32 data_crc; local
[all...]
/linux-master/net/ceph/
H A Dauth_x.c974 __le32 data_crc; member in struct:__anon26
981 sigblock->data_crc = msg->footer.data_crc;
996 __le32 data_crc; member in struct:__anon27
1010 sigblock->data_crc = msg->footer.data_crc;
H A Dmessenger_v2.c571 cpu_to_le32s(&con->v2.out_epil.data_crc);
582 u32 *data_crc)
594 if (front_crc && middle_crc && data_crc) {
597 *data_crc = ceph_decode_32(&p);
659 u32 middle_crc, u32 data_crc)
694 if (con->in_data_crc != data_crc) {
696 con->in_data_crc, data_crc);
1596 con->v2.out_epil.middle_crc, con->v2.out_epil.data_crc);
1649 con->v2.out_epil.data_crc = 0;
3040 u32 front_crc, middle_crc, data_crc; local
581 decode_epilogue(void *p, u32 *front_crc, u32 *middle_crc, u32 *data_crc) argument
658 verify_epilogue_crcs(struct ceph_connection *con, u32 front_crc, u32 middle_crc, u32 data_crc) argument
[all...]
H A Dmessenger_v1.c252 con->out_msg->footer.data_crc = 0;
485 crc = do_datacrc ? le32_to_cpu(msg->footer.data_crc) : 0;
502 msg->footer.data_crc = cpu_to_le32(crc);
515 msg->footer.data_crc = cpu_to_le32(crc);
1281 m->footer.middle_crc, data_len, m->footer.data_crc);
1296 con->in_data_crc != le32_to_cpu(m->footer.data_crc)) {
1298 con->in_data_crc, le32_to_cpu(m->footer.data_crc));
/linux-master/drivers/block/
H A Damiflop.c1155 unsigned short crc,data_crc[2]; local
1229 raw = dos_decode((unsigned char *)data_crc,(ushort *) raw,4);
1232 if (crc != data_crc[0]) {
1235 hdr.sec, hdr.len_desc, scnt,data_crc[0], crc);

Completed in 222 milliseconds

12