Home
last modified time | relevance | path

Searched refs:compress_type (Results 1 – 25 of 26) sorted by relevance

12

/OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/cxgb4/
H A Dcxgb4_cudbg.c202 cudbg_init.compress_type = CUDBG_COMPRESSION_ZLIB; in cxgb4_cudbg_collect()
209 cudbg_init.compress_type = CUDBG_COMPRESSION_NONE; in cxgb4_cudbg_collect()
213 cudbg_init.compress_type = CUDBG_COMPRESSION_NONE; in cxgb4_cudbg_collect()
216 cudbg_hdr->compress_type = cudbg_init.compress_type; in cxgb4_cudbg_collect()
243 if (cudbg_init.compress_type != CUDBG_COMPRESSION_NONE) in cxgb4_cudbg_collect()
H A Dcudbg_common.c20 if (pdbg_init->compress_type != CUDBG_COMPRESSION_NONE) { in cudbg_get_buff()
40 if (pdbg_init->compress_type != CUDBG_COMPRESSION_NONE) in cudbg_put_buff()
H A Dcudbg_if.h81 u8 compress_type; /* Type of compression to use */ member
H A Dcudbg_lib_common.h31 u8 compress_type:4; member
/OK3568_Linux_fs/kernel/fs/btrfs/
H A Dsuper.c517 char *compress_type; in btrfs_parse_options() local
599 info->compress_type : BTRFS_COMPRESS_NONE; in btrfs_parse_options()
606 compress_type = "zlib"; in btrfs_parse_options()
608 info->compress_type = BTRFS_COMPRESS_ZLIB; in btrfs_parse_options()
626 compress_type = "lzo"; in btrfs_parse_options()
627 info->compress_type = BTRFS_COMPRESS_LZO; in btrfs_parse_options()
635 compress_type = "zstd"; in btrfs_parse_options()
636 info->compress_type = BTRFS_COMPRESS_ZSTD; in btrfs_parse_options()
647 compress_type = "no"; in btrfs_parse_options()
649 info->compress_type = 0; in btrfs_parse_options()
[all …]
H A Dordered-data.h99 int compress_type; member
172 int compress_type);
H A Dfile-item.c1058 int compress_type = btrfs_file_extent_compression(leaf, fi); in btrfs_extent_item_to_extent_map() local
1076 if (compress_type != BTRFS_COMPRESS_NONE) { in btrfs_extent_item_to_extent_map()
1078 em->compress_type = compress_type; in btrfs_extent_item_to_extent_map()
1098 if (!new_inline && compress_type != BTRFS_COMPRESS_NONE) { in btrfs_extent_item_to_extent_map()
1100 em->compress_type = compress_type; in btrfs_extent_item_to_extent_map()
H A Dordered-data.c165 int compress_type) in __btrfs_add_ordered_extent() argument
199 entry->compress_type = compress_type; in __btrfs_add_ordered_extent()
276 int compress_type) in btrfs_add_ordered_extent_compress() argument
280 compress_type); in btrfs_add_ordered_extent_compress()
H A Dextent_io.h165 int compress_type) in extent_set_compress_type() argument
167 *bio_flags |= compress_type << EXTENT_BIO_FLAG_SHIFT; in extent_set_compress_type()
H A Dextent_map.h48 unsigned int compress_type; member
H A Dinode.c91 u64 ram_bytes, int compress_type,
164 int compress_type, in insert_inline_extent() argument
209 if (compress_type != BTRFS_COMPRESS_NONE) { in insert_inline_extent()
226 compress_type); in insert_inline_extent()
273 int compress_type, in cow_file_range_inline() argument
333 compress_type, compressed_pages); in cow_file_range_inline()
363 int compress_type; member
390 int compress_type) in add_async_extent() argument
401 async_extent->compress_type = compress_type; in add_async_extent()
490 int compress_type = fs_info->compress_type; in compress_file_range() local
[all …]
H A Dcompression.h50 int compress_type; member
H A Dioctl.c302 comp = btrfs_compress_type2str(fs_info->compress_type); in btrfs_ioctl_setflags()
1485 int compress_type = BTRFS_COMPRESS_ZLIB; in btrfs_defrag_file() local
1500 if (range->compress_type >= BTRFS_NR_COMPRESS_TYPES) in btrfs_defrag_file()
1502 if (range->compress_type) in btrfs_defrag_file()
1503 compress_type = range->compress_type; in btrfs_defrag_file()
1610 BTRFS_I(inode)->defrag_compress = compress_type; in btrfs_defrag_file()
1658 if (range->compress_type == BTRFS_COMPRESS_LZO) { in btrfs_defrag_file()
1660 } else if (range->compress_type == BTRFS_COMPRESS_ZSTD) { in btrfs_defrag_file()
H A Dfile.c601 split->compress_type = em->compress_type; in btrfs_drop_extent_cache()
613 split->compress_type = em->compress_type; in btrfs_drop_extent_cache()
2428 hole_em->compress_type = BTRFS_COMPRESS_NONE; in fill_holes()
H A Dcompression.c670 cb->compress_type = extent_compress_type(bio_flags); in btrfs_submit_compressed_read()
1186 int type = cb->compress_type; in btrfs_decompress_bio()
H A Dextent_map.c58 em->compress_type = BTRFS_COMPRESS_NONE; in alloc_extent_map()
H A Ddisk-io.c3029 fs_info->compress_type = BTRFS_COMPRESS_ZLIB; in open_ctree()
3072 if (fs_info->compress_type == BTRFS_COMPRESS_LZO) in open_ctree()
3074 else if (fs_info->compress_type == BTRFS_COMPRESS_ZSTD) in open_ctree()
H A Dtree-log.c4211 if (em->compress_type) { in log_extent_csums()
4290 if (em->compress_type != BTRFS_COMPRESS_NONE) { in log_one_extent()
4307 btrfs_set_token_file_extent_compression(&token, fi, em->compress_type); in log_one_extent()
H A Dextent_io.c2511 extent_set_compress_type(&failrec->bio_flags, em->compress_type); in btrfs_get_io_failure_record()
3219 em->compress_type); in btrfs_do_readpage()
H A Dctree.h650 unsigned long compress_type:4; member
/OK3568_Linux_fs/kernel/fs/btrfs/tests/
H A Dinode-tests.c622 if (em->compress_type != BTRFS_COMPRESS_ZLIB) { in test_btrfs_get_extent()
624 BTRFS_COMPRESS_ZLIB, em->compress_type); in test_btrfs_get_extent()
656 if (em->compress_type != BTRFS_COMPRESS_ZLIB) { in test_btrfs_get_extent()
658 BTRFS_COMPRESS_ZLIB, em->compress_type); in test_btrfs_get_extent()
719 if (em->compress_type != BTRFS_COMPRESS_ZLIB) { in test_btrfs_get_extent()
721 BTRFS_COMPRESS_ZLIB, em->compress_type); in test_btrfs_get_extent()
/OK3568_Linux_fs/kernel/include/trace/events/
H A Dbtrfs.h300 __field( unsigned int, compress_type )
313 __entry->compress_type = map->compress_type;
328 __entry->refs, __entry->compress_type)
527 __field( int, compress_type )
541 __entry->compress_type = ordered->compress_type;
561 __entry->compress_type, __entry->refs)
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dbtrfs.h603 __u32 compress_type; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dbtrfs.h565 __u32 compress_type; member
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dbtrfs.h565 __u32 compress_type; member

12