Searched refs:nr_records (Results 1 - 11 of 11) sorted by relevance

/linux-master/kernel/trace/
H A Dtrace_recursion_record.c17 static atomic_t nr_records; variable
36 i = atomic_read(&nr_records);
37 /* nr_records is -1 when clearing records */
46 * be greater than nr_records. This is because the writer
47 * that succeeded has not updated the nr_records yet.
49 * updates nr_records. But if the other writer takes an
55 * recursed_functions, and it will update the nr_records
95 * nr_records = -1;
99 * nr_records = 0;
109 i = atomic_read(&nr_records);
[all...]
/linux-master/fs/xfs/libxfs/
H A Dxfs_btree_staging.h86 uint64_t nr_records; member in struct:xfs_btree_bload
104 * number of btree blocks needed to store nr_records records.
126 struct xfs_btree_bload *bbl, uint64_t nr_records);
H A Dxfs_btree_staging.c202 * algorithm: For leaf levels, the number of items for the level is nr_records
574 uint64_t nr_records)
592 bbl->nr_records = nr_this_level = nr_records;
680 uint64_t nr_this_level = bbl->nr_records;
571 xfs_btree_bload_compute_geometry( struct xfs_btree_cur *cur, struct xfs_btree_bload *bbl, uint64_t nr_records) argument
/linux-master/fs/xfs/scrub/
H A Drcbag_btree.h57 unsigned long long rcbagbt_calc_size(unsigned long long nr_records);
H A Drcbag_btree.c282 unsigned long long nr_records)
292 return xfs_btree_calc_size(minrecs, nr_records);
281 rcbagbt_calc_size( unsigned long long nr_records) argument
H A Drmap_repair.c149 unsigned long long nr_records; member in struct:xrep_rmap
848 rr->nr_records++;
955 rr->nr_records = 0;
1078 &rr->new_btree.bload, rr->nr_records + freesp_records);
1103 &rr->new_btree.bload, rr->nr_records);
1339 error = xrep_rmap_count_records(rr->mcur, &rr->nr_records);
/linux-master/include/trace/events/
H A Drcu.h686 * address of the array holding nr_records entries.
690 TP_PROTO(const char *rcuname, unsigned long nr_records, void **p),
692 TP_ARGS(rcuname, nr_records, p),
696 __field(unsigned long, nr_records)
702 __entry->nr_records = nr_records;
706 TP_printk("%s bulk=0x%p nr_records=%lu",
707 __entry->rcuname, __entry->p, __entry->nr_records)
/linux-master/tools/testing/cxl/test/
H A Dmem.c1063 int nr_records = 0; local
1078 po->record[nr_records].address = cpu_to_le64(dpa);
1079 po->record[nr_records].length = cpu_to_le32(1);
1080 nr_records++;
1081 if (nr_records == poison_inject_dev_max)
1086 po->count = cpu_to_le16(nr_records);
1098 int nr_records; local
1103 nr_records = le16_to_cpu(po->count);
1104 memcpy(cmd->payload_out, po, struct_size(po, record, nr_records));
1105 cmd->size_out = struct_size(po, record, nr_records);
[all...]
/linux-master/drivers/cxl/core/
H A Dmbox.c1297 int nr_records = 0; local
1328 nr_records = nr_records + le16_to_cpu(po->count);
1329 if (nr_records >= mds->poison.max_errors) {
1331 nr_records);
/linux-master/kernel/rcu/
H A Dtree.c2851 * @nr_records: Number of active pointers in the array
2857 unsigned long nr_records; member in struct:kvfree_rcu_bulk_data
2948 for (i = 0; i < bhead->nr_records; i++)
3030 rcu_state.name, bnode->nr_records,
3033 kfree_bulk(bnode->nr_records, bnode->records);
3035 for (i = 0; i < bnode->nr_records; i++) {
3193 atomic_sub(bnode->nr_records, &krcp->bulk_count[i]);
3368 if (!bnode || bnode->nr_records == KVFREE_BULK_MAX_ENTR) {
3393 bnode->nr_records = 0;
3398 bnode->records[bnode->nr_records
[all...]
/linux-master/fs/xfs/
H A Dxfs_trace.h4334 union xfs_btree_ptr *ptr, unsigned int nr_records),
4335 TP_ARGS(cur, level, block_idx, nr_blocks, ptr, nr_records),
4344 __field(unsigned int, nr_records)
4361 __entry->nr_records = nr_records;
4371 __entry->nr_records)

Completed in 214 milliseconds