mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 16:48:26 +02:00 
			
		
		
		
	 3fcb9d1720
			
		
	
	
		3fcb9d1720
		
	
	
	
	
		
			
			Count the running time and actual IO processing time of the sqpoll thread, and output the statistical data to fdinfo. Variable description: "work_time" in the code represents the sum of the jiffies of the sq thread actually processing IO, that is, how many milliseconds it actually takes to process IO. "total_time" represents the total time that the sq thread has elapsed from the beginning of the loop to the current time point, that is, how many milliseconds it has spent in total. The test tool is fio, and its parameters are as follows: [global] ioengine=io_uring direct=1 group_reporting bs=128k norandommap=1 randrepeat=0 refill_buffers ramp_time=30s time_based runtime=1m clocksource=clock_gettime overwrite=1 log_avg_msec=1000 numjobs=1 [disk0] filename=/dev/nvme0n1 rw=read iodepth=16 hipri sqthread_poll=1 The test results are as follows: Every 2.0s: cat /proc/9230/fdinfo/6 | grep -E Sq SqMask: 0x3 SqHead: 3197153 SqTail: 3197153 CachedSqHead: 3197153 SqThread: 9231 SqThreadCpu: 11 SqTotalTime: 18099614 SqWorkTime: 16748316 The test results corresponding to different iodepths are as follows: |-----------|-------|-------|-------|------|-------| | iodepth | 1 | 4 | 8 | 16 | 64 | |-----------|-------|-------|-------|------|-------| |utilization| 2.9% | 8.8% | 10.9% | 92.9%| 84.4% | |-----------|-------|-------|-------|------|-------| | idle | 97.1% | 91.2% | 89.1% | 7.1% | 15.6% | |-----------|-------|-------|-------|------|-------| Signed-off-by: Xiaobing Li <xiaobing.li@samsung.com> Link: https://lore.kernel.org/r/20240228091251.543383-1-xiaobing.li@samsung.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
		
			
				
	
	
		
			31 lines
		
	
	
	
		
			848 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
	
		
			848 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| 
 | |
| struct io_sq_data {
 | |
| 	refcount_t		refs;
 | |
| 	atomic_t		park_pending;
 | |
| 	struct mutex		lock;
 | |
| 
 | |
| 	/* ctx's that are using this sqd */
 | |
| 	struct list_head	ctx_list;
 | |
| 
 | |
| 	struct task_struct	*thread;
 | |
| 	struct wait_queue_head	wait;
 | |
| 
 | |
| 	unsigned		sq_thread_idle;
 | |
| 	int			sq_cpu;
 | |
| 	pid_t			task_pid;
 | |
| 	pid_t			task_tgid;
 | |
| 
 | |
| 	u64			work_time;
 | |
| 	unsigned long		state;
 | |
| 	struct completion	exited;
 | |
| };
 | |
| 
 | |
| int io_sq_offload_create(struct io_ring_ctx *ctx, struct io_uring_params *p);
 | |
| void io_sq_thread_finish(struct io_ring_ctx *ctx);
 | |
| void io_sq_thread_stop(struct io_sq_data *sqd);
 | |
| void io_sq_thread_park(struct io_sq_data *sqd);
 | |
| void io_sq_thread_unpark(struct io_sq_data *sqd);
 | |
| void io_put_sq_data(struct io_sq_data *sqd);
 | |
| void io_sqpoll_wait_sq(struct io_ring_ctx *ctx);
 | |
| int io_sqpoll_wq_cpu_affinity(struct io_ring_ctx *ctx, cpumask_var_t mask);
 |