Symbol: IDA_BLOCK_SIZE
arch/s390/include/asm/idals.h
138
nr_ptrs = (size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_SHIFT;
arch/s390/include/asm/idals.h
147
ib->data[i] = dma64_add(ib->data[i - 1], IDA_BLOCK_SIZE);
arch/s390/include/asm/idals.h
174
nr_ptrs = (ib->size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_SHIFT;
arch/s390/include/asm/idals.h
302
for (i = 0; count > IDA_BLOCK_SIZE; i++) {
arch/s390/include/asm/idals.h
304
left = copy_to_user(to, vaddr, IDA_BLOCK_SIZE);
arch/s390/include/asm/idals.h
306
return left + count - IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
307
to = (void __user *)to + IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
308
count -= IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
324
for (i = 0; count > IDA_BLOCK_SIZE; i++) {
arch/s390/include/asm/idals.h
326
left = copy_from_user(vaddr, from, IDA_BLOCK_SIZE);
arch/s390/include/asm/idals.h
328
return left + count - IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
329
from = (void __user *)from + IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
330
count -= IDA_BLOCK_SIZE;
arch/s390/include/asm/idals.h
47
cidaw = (unsigned long)vaddr & (IDA_BLOCK_SIZE - 1);
arch/s390/include/asm/idals.h
48
cidaw += length + IDA_BLOCK_SIZE - 1;
arch/s390/include/asm/idals.h
76
paddr = dma64_and(paddr, -IDA_BLOCK_SIZE);
arch/s390/include/asm/idals.h
78
paddr = dma64_add(paddr, IDA_BLOCK_SIZE);
drivers/s390/block/dasd_eckd.c
4259
if ((unsigned long)(dst) & (IDA_BLOCK_SIZE - 1)) {
drivers/s390/block/dasd_eckd.c
4279
if (!((unsigned long)(idaw_dst + idaw_len) & (IDA_BLOCK_SIZE - 1)))