/linux-6.3-rc2/drivers/net/wireless/broadcom/b43legacy/ |
A D | main.h | 25 #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] argument 26 #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) argument 28 #define PAD_BYTES(nr_bytes) P4D_BYTES(__LINE__ , (nr_bytes)) argument
|
/linux-6.3-rc2/drivers/net/wireless/broadcom/b43/ |
A D | main.h | 23 #define P4D_BYT3S(magic, nr_bytes) u8 __p4dding##magic[nr_bytes] argument 24 #define P4D_BYTES(line, nr_bytes) P4D_BYT3S(line, nr_bytes) argument 26 #define PAD_BYTES(nr_bytes) P4D_BYTES( __LINE__ , (nr_bytes)) argument
|
/linux-6.3-rc2/tools/testing/selftests/kvm/x86_64/ |
A D | nx_huge_pages_test.c | 115 uint64_t nr_bytes; in run_test() local 138 nr_bytes = HPAGE_SLOT_NPAGES * vm->page_size; in run_test() 150 virt_map_level(vm, HPAGE_GVA, HPAGE_GPA, nr_bytes, PG_LEVEL_4K); in run_test() 152 virt_map_level(vm, HPAGE_GVA, HPAGE_GPA, nr_bytes, PG_LEVEL_2M); in run_test() 155 memset(hva, RETURN_OPCODE, nr_bytes); in run_test()
|
/linux-6.3-rc2/drivers/md/ |
A D | dm-path-selector.h | 70 struct dm_path *(*select_path)(struct path_selector *ps, size_t nr_bytes); 90 size_t nr_bytes); 92 size_t nr_bytes, u64 start_time);
|
A D | dm-ps-service-time.c | 277 static struct dm_path *st_select_path(struct path_selector *ps, size_t nr_bytes) in st_select_path() argument 289 if (!best || (st_compare_load(pi, best, nr_bytes) < 0)) in st_select_path() 305 size_t nr_bytes) in st_start_io() argument 309 atomic_add(nr_bytes, &pi->in_flight_size); in st_start_io() 315 size_t nr_bytes, u64 start_time) in st_end_io() argument 319 atomic_sub(nr_bytes, &pi->in_flight_size); in st_end_io()
|
A D | dm-ps-queue-length.c | 191 static struct dm_path *ql_select_path(struct path_selector *ps, size_t nr_bytes) in ql_select_path() argument 224 size_t nr_bytes) in ql_start_io() argument 234 size_t nr_bytes, u64 start_time) in ql_end_io() argument
|
A D | dm-mpath.c | 110 size_t nr_bytes; member 303 mpio->nr_bytes = bio->bi_iter.bi_size; in multipath_init_per_bio_data() 379 size_t nr_bytes) in choose_path_in_pg() argument 426 pgpath = choose_path_in_pg(m, pg, nr_bytes); in choose_pgpath() 435 pgpath = choose_path_in_pg(m, pg, nr_bytes); in choose_pgpath() 512 size_t nr_bytes = blk_rq_bytes(rq); in multipath_clone_and_map() local 522 pgpath = choose_pgpath(m, nr_bytes); in multipath_clone_and_map() 536 mpio->nr_bytes = nr_bytes; in multipath_clone_and_map() 566 nr_bytes); in multipath_clone_and_map() 584 mpio->nr_bytes, in multipath_release_clone() [all …]
|
A D | dm-ps-historical-service-time.c | 431 size_t nr_bytes) in hst_select_path() argument 462 size_t nr_bytes) in hst_start_io() argument 493 size_t nr_bytes, u64 start_time) in hst_end_io() argument
|
A D | dm-ps-round-robin.c | 189 static struct dm_path *rr_select_path(struct path_selector *ps, size_t nr_bytes) in rr_select_path() argument
|
A D | dm-rq.c | 83 unsigned int nr_bytes = info->orig->bi_iter.bi_size; in end_clone_bio() local 110 tio->completed += nr_bytes; in end_clone_bio()
|
A D | dm-ps-io-affinity.c | 197 size_t nr_bytes) in ioa_select_path() argument
|
/linux-6.3-rc2/drivers/acpi/ |
A D | nvs.c | 103 unsigned int nr_bytes; in suspend_nvs_register() local 111 nr_bytes = PAGE_SIZE - (start & ~PAGE_MASK); in suspend_nvs_register() 112 entry->size = (size < nr_bytes) ? size : nr_bytes; in suspend_nvs_register()
|
/linux-6.3-rc2/tools/testing/selftests/kvm/ |
A D | max_guest_memory_test.c | 96 uint64_t gpa, nr_bytes; in spawn_workers() local 106 nr_bytes = ((end_gpa - start_gpa) / nr_vcpus) & in spawn_workers() 108 TEST_ASSERT(nr_bytes, "C'mon, no way you have %d CPUs", nr_vcpus); in spawn_workers() 110 for (i = 0, gpa = start_gpa; i < nr_vcpus; i++, gpa += nr_bytes) { in spawn_workers() 113 info[i].end_gpa = gpa + nr_bytes; in spawn_workers()
|
/linux-6.3-rc2/include/trace/events/ |
A D | block.h | 105 TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), 107 TP_ARGS(rq, error, nr_bytes), 121 __entry->nr_sector = nr_bytes >> 9; 149 TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), 151 TP_ARGS(rq, error, nr_bytes) 165 TP_PROTO(struct request *rq, blk_status_t error, unsigned int nr_bytes), 167 TP_ARGS(rq, error, nr_bytes)
|
/linux-6.3-rc2/drivers/platform/olpc/ |
A D | olpc-xo175-ec.c | 479 size_t nr_bytes; in olpc_xo175_ec_cmd() local 507 nr_bytes = resp_len; in olpc_xo175_ec_cmd() 509 nr_bytes = (size_t)ret; in olpc_xo175_ec_cmd() 512 resp_len = min(resp_len, nr_bytes); in olpc_xo175_ec_cmd() 525 priv->expected_resp_len = nr_bytes; in olpc_xo175_ec_cmd() 552 } else if (priv->resp_len != nr_bytes) { in olpc_xo175_ec_cmd() 554 cmd, priv->resp_len, nr_bytes); in olpc_xo175_ec_cmd()
|
/linux-6.3-rc2/block/ |
A D | t10-pi.c | 184 static void t10_pi_type1_complete(struct request *rq, unsigned int nr_bytes) in t10_pi_type1_complete() argument 186 unsigned intervals = nr_bytes >> rq->q->integrity.interval_exp; in t10_pi_type1_complete() 243 static void t10_pi_type3_complete(struct request *rq, unsigned int nr_bytes) in t10_pi_type3_complete() argument 412 static void ext_pi_type1_complete(struct request *rq, unsigned int nr_bytes) in ext_pi_type1_complete() argument 414 unsigned intervals = nr_bytes >> rq->q->integrity.interval_exp; in ext_pi_type1_complete()
|
/linux-6.3-rc2/fs/proc/ |
A D | vmcore.c | 135 size_t nr_bytes; in read_from_oldmem() local 148 nr_bytes = PAGE_SIZE - offset; in read_from_oldmem() 150 nr_bytes = count; in read_from_oldmem() 154 tmp = iov_iter_zero(nr_bytes, iter); in read_from_oldmem() 158 nr_bytes, in read_from_oldmem() 161 tmp = copy_oldmem_page(iter, pfn, nr_bytes, in read_from_oldmem() 164 if (tmp < nr_bytes) { in read_from_oldmem() 169 *ppos += nr_bytes; in read_from_oldmem() 170 count -= nr_bytes; in read_from_oldmem() 171 read += nr_bytes; in read_from_oldmem()
|
/linux-6.3-rc2/net/rds/ |
A D | rdma.c | 615 unsigned int nr_bytes; in rds_cmsg_rdma_args() local 700 nr_bytes = 0; in rds_cmsg_rdma_args() 759 nr_bytes, nr, iov->bytes, iov->addr); in rds_cmsg_rdma_args() 761 nr_bytes += iov->bytes; in rds_cmsg_rdma_args() 783 if (nr_bytes > args->remote_vec.bytes) { in rds_cmsg_rdma_args() 785 nr_bytes, in rds_cmsg_rdma_args() 790 op->op_bytes = nr_bytes; in rds_cmsg_rdma_args()
|
/linux-6.3-rc2/drivers/iio/humidity/ |
A D | am2315.c | 76 static u16 am2315_crc(u8 *data, u8 nr_bytes) in am2315_crc() argument 81 while (nr_bytes--) { in am2315_crc()
|
/linux-6.3-rc2/mm/ |
A D | memcontrol.c | 265 unsigned int nr_bytes; in obj_cgroup_release() local 291 nr_pages = nr_bytes >> PAGE_SHIFT; in obj_cgroup_release() 2191 unsigned int nr_bytes; member 3241 if (objcg == stock->cached_objcg && stock->nr_bytes >= nr_bytes) { in consume_obj_stock() 3242 stock->nr_bytes -= nr_bytes; in consume_obj_stock() 3258 if (stock->nr_bytes) { in drain_obj_stock() 3260 unsigned int nr_bytes = stock->nr_bytes & (PAGE_SIZE - 1); in drain_obj_stock() local 3284 stock->nr_bytes = 0; in drain_obj_stock() 3347 stock->nr_bytes += nr_bytes; in refill_obj_stock() 3396 if (nr_bytes) in obj_cgroup_charge() [all …]
|
/linux-6.3-rc2/drivers/net/ethernet/mellanox/mlx4/ |
A D | en_tx.c | 503 bytes += ring->tx_info[ring_index].nr_bytes; in mlx4_en_process_tx_cq() 1053 tx_info->nr_bytes = skb->len + (i - 1) * lso_header_size; in mlx4_en_xmit() 1060 tx_info->nr_bytes = max_t(unsigned int, skb->len, ETH_ZLEN); in mlx4_en_xmit() 1063 ring->bytes += tx_info->nr_bytes; in mlx4_en_xmit() 1102 tx_info->nr_bytes, in mlx4_en_xmit() 1200 tx_info->nr_bytes = max_t(unsigned int, length, ETH_ZLEN); in mlx4_en_xmit_frame()
|
/linux-6.3-rc2/fs/ntfs/ |
A D | compress.c | 309 int nr_bytes = do_sb_end - *dest_ofs; in ntfs_decompress() local 314 memset(dp_addr, 0, nr_bytes); in ntfs_decompress() 315 *dest_ofs += nr_bytes; in ntfs_decompress()
|
/linux-6.3-rc2/tools/lib/bpf/ |
A D | btf_dump.c | 1829 int nr_bytes; in btf_dump_base_type_check_zero() local 1835 nr_bytes = d->ptr_sz; in btf_dump_base_type_check_zero() 1837 nr_bytes = t->size; in btf_dump_base_type_check_zero() 1839 if (nr_bytes < 1 || nr_bytes > 16) { in btf_dump_base_type_check_zero() 1840 pr_warn("unexpected size %d for id [%u]\n", nr_bytes, id); in btf_dump_base_type_check_zero() 1844 if (memcmp(data, bytecmp, nr_bytes) == 0) in btf_dump_base_type_check_zero()
|
/linux-6.3-rc2/drivers/block/ |
A D | swim3.c | 257 static bool swim3_end_request(struct floppy_state *fs, blk_status_t err, unsigned int nr_bytes) in swim3_end_request() argument 262 err, nr_bytes, req); in swim3_end_request() 265 nr_bytes = blk_rq_cur_bytes(req); in swim3_end_request() 266 if (blk_update_request(req, err, nr_bytes)) in swim3_end_request()
|
/linux-6.3-rc2/tools/testing/selftests/kvm/lib/x86_64/ |
A D | processor.c | 232 uint64_t nr_bytes, int level) in virt_map_level() argument 235 uint64_t nr_pages = nr_bytes / pg_size; in virt_map_level() 238 TEST_ASSERT(nr_bytes % pg_size == 0, in virt_map_level() 240 nr_bytes, pg_size); in virt_map_level()
|