Home
last modified time | relevance | path

Searched refs:this_size (Results 1 – 8 of 8) sorted by relevance

/linux-6.1.9/kernel/trace/
Dtrace_stack.c157 unsigned long this_size, flags; unsigned long *p, *top, *start; in check_stack() local
162 this_size = ((unsigned long)stack) & (THREAD_SIZE-1); in check_stack()
163 this_size = THREAD_SIZE - this_size; in check_stack()
165 this_size -= frame_size; in check_stack()
167 if (this_size <= stack_trace_max_size) in check_stack()
183 this_size -= tracer_frame; in check_stack()
186 if (this_size <= stack_trace_max_size) in check_stack()
189 stack_trace_max_size = this_size; in check_stack()
226 stack_trace_index[x] = this_size; in check_stack()
236 this_size = stack_trace_index[x++] = in check_stack()
/linux-6.1.9/tools/io_uring/
Dio_uring-cp.c141 off_t this_size = insize; in copy_file() local
145 if (this_size > BS) in copy_file()
146 this_size = BS; in copy_file()
147 else if (!this_size) in copy_file()
150 if (queue_read(ring, this_size, offset)) in copy_file()
153 insize -= this_size; in copy_file()
154 offset += this_size; in copy_file()
/linux-6.1.9/Documentation/admin-guide/device-mapper/
Dstriped.rst48 my $this_size = `blockdev --getsz $devs[$i]`;
49 $min_dev_size = ($min_dev_size < $this_size) ?
50 $min_dev_size : $this_size;
/linux-6.1.9/usr/
Dgen_init_cpio.c304 size_t i, this_size = MIN(size, sizeof(filebuf)); in cpio_mkfile_csum() local
306 this_read = read(fd, filebuf, this_size); in cpio_mkfile_csum()
307 if (this_read <= 0 || this_read > this_size) in cpio_mkfile_csum()
399 size_t this_size = MIN(size, sizeof(filebuf)); in cpio_mkfile() local
401 this_read = read(file, filebuf, this_size); in cpio_mkfile()
402 if (this_read <= 0 || this_read > this_size) { in cpio_mkfile()
/linux-6.1.9/block/partitions/
Dmsdos.c137 sector_t this_sector, this_size; in parse_extended() local
145 this_size = first_size; in parse_extended()
185 if (offs + size > this_size) in parse_extended()
216 this_size = nr_sects(p) * sector_size; in parse_extended()
/linux-6.1.9/drivers/dma/
Dbcm2835-dma.c545 size_t this_size = control_block->length; in bcm2835_dma_desc_size_pos() local
554 size += this_size; in bcm2835_dma_desc_size_pos()
555 else if (addr >= dma && addr < dma + this_size) in bcm2835_dma_desc_size_pos()
556 size += dma + this_size - addr; in bcm2835_dma_desc_size_pos()
/linux-6.1.9/io_uring/
Drsrc.c381 unsigned int this_size = min_t(size_t, size, PAGE_SIZE); in io_alloc_page_table() local
383 table[i] = kzalloc(this_size, GFP_KERNEL_ACCOUNT); in io_alloc_page_table()
388 size -= this_size; in io_alloc_page_table()
/linux-6.1.9/drivers/dma/ti/
Domap-dma.c808 size_t this_size = omap_dma_sg_size(&d->sg[i]) * es_size; in omap_dma_desc_size_pos() local
811 size += this_size; in omap_dma_desc_size_pos()
813 addr < d->sg[i].addr + this_size) in omap_dma_desc_size_pos()
814 size += d->sg[i].addr + this_size - addr; in omap_dma_desc_size_pos()