Home
last modified time | relevance | path

Searched refs:crc_offset (Results 1 – 6 of 6) sorted by relevance

/linux/fs/f2fs/
H A Dcheckpoint.c864 size_t crc_offset = 0; in get_checkpoint_version() local
873 crc_offset = le32_to_cpu((*cp_block)->checksum_offset); in get_checkpoint_version()
874 if (crc_offset < CP_MIN_CHKSUM_OFFSET || in get_checkpoint_version()
875 crc_offset > CP_CHKSUM_OFFSET) { in get_checkpoint_version()
877 f2fs_warn(sbi, "invalid crc_offset: %zu", crc_offset); in get_checkpoint_version()
H A Dsuper.c3437 size_t crc_offset = 0; in sanity_check_raw_super() local
3448 crc_offset = le32_to_cpu(raw_super->checksum_offset); in sanity_check_raw_super()
3449 if (crc_offset != in sanity_check_raw_super()
3452 crc_offset); in sanity_check_raw_super()
3456 if (!f2fs_crc_valid(sbi, crc, raw_super, crc_offset)) { in sanity_check_raw_super()
H A Df2fs.h2076 size_t crc_offset = le32_to_cpu(cp->checksum_offset); in cur_cp_crc() local
2077 return le32_to_cpu(*((__le32 *)((unsigned char *)cp + crc_offset))); in cur_cp_crc()
/linux/drivers/iio/imu/
H A Dadis16475.c1571 u8 crc_offset = 9; in adis16475_push_single_sample() local
1579 crc_offset = (st->info->flags & ADIS16475_HAS_TIMESTAMP32) ? 16 : 15; in adis16475_push_single_sample()
1589 crc = be16_to_cpu(buffer[crc_offset]); in adis16475_push_single_sample()
/linux/drivers/net/ethernet/emulex/benet/
H A Dbe_cmds.c2581 u16 img_optype, u32 img_offset, u32 crc_offset) in be_cmd_get_flash_crc() argument
2602 req->params.offset = cpu_to_le32(img_offset + crc_offset); in be_cmd_get_flash_crc()
2604 req->params.offset = cpu_to_le32(crc_offset); in be_cmd_get_flash_crc()
2668 u32 crc_offset; in be_check_flash_crc() local
2677 crc_offset = hdr_size + img_offset + img_size - 4; in be_check_flash_crc()
2680 if (!memcmp(crc, p + crc_offset, 4)) in be_check_flash_crc()
/linux/drivers/hid/
H A Dhid-playstation.c772 uint8_t crc_offset = size - 4; in ps_get_report() local
773 uint32_t report_crc = get_unaligned_le32(&buf[crc_offset]); in ps_get_report()
775 if (!ps_check_crc32(PS_FEATURE_CRC32_SEED, buf, crc_offset, report_crc)) { in ps_get_report()