Lines Matching refs:chunk_order
58 * root@self# insmod ntb_perf.ko chunk_order=19 total_order=28 use_dma
113 static unsigned char chunk_order = 19; /* 512K */
114 module_param(chunk_order, byte, 0644);
115 MODULE_PARM_DESC(chunk_order, "Data chunk order [2^n] to transfer");
932 chunk_size = 1ULL << chunk_order;
1373 debugfs_create_u8("chunk_order", 0500, perf->dbgfs_dir, &chunk_order);
1534 if (chunk_order > MAX_CHUNK_ORDER) {
1535 chunk_order = MAX_CHUNK_ORDER;
1536 pr_info("Chunk order reduced to %hhu\n", chunk_order);
1539 if (total_order < chunk_order) {
1540 total_order = chunk_order;