mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Ethan Zhao <haifeng.zhao@linux.intel.com>
To: robin.murphy@arm.com
Cc: iommu@lists.linux.dev, linux-kernel@vger.kernel.org,
	regressions@lists.linux.dev
Subject: [Regression] [iommu/iova] iova_rbtree_lock contended seriously causing performance bottleneck (bisect done; commit found)
Date: Tue,  2 Jan 2024 23:55:06 -0500	[thread overview]
Message-ID: <20240103045506.1077586-1-haifeng.zhao@linux.intel.com> (raw)

flame graph


                                   queued_spin_lock_slowpath-------------\
                                  do_raw_spin_lock                       \
                                 _raw_spin_lock_irqsave                  \
                                __alloc_and_insert_iova_range            \  
                               alloc_iova_fast                           \
                              iommu_dma_alloc_iova                       \
                             __iommu_dma_map                             \
                            iommu_dma_map_page                           \
                           ice_tx_map.isra.0                             \
                          ice_xmit_frame_ring                            \
	                     dev_hard_start_xmit                             \
                        sch_direct_xmit                                  \ 
                       __dev_xmit_skb                                    \
                      __dev_queue_xmit                                   \
                     ip_finish_output2                                   \ 
				     __ip_queue_xmit                                     \
				    __tcp_transmit_skb                                   \ 
				    tcp_write_xmit                                       \
				   __tcp_push_pending_frames                             \
				  tcp_sendmsg_locked                                     \
                 tcp_sendmsg                                             \
                tcp_sendmsg                                              \
               sock_write_iter                                           \
              do_iter_readv_writev                                       \
             do_iter_write                                               \
            vfs_writev                                                   \
           do_writev                                                     \
           do_syscall_64                                                 \
          entry_SYSCALL_64_after_hwframe                                 \
         __GI___writev                                                   \
         [nginx]                                                         \
        ngx_linux_sendfile_chain                                         \
       ngx_http_write_filter                                             \
      ngx_output_chain                                                   \
     ngx_http_send_response                                              \
    ngx_http_script_return_code                                          \
  [nginx]                                                                \
 ngx_http_core_run_phases                                                \
ngx_http_process_request                                                 \

Setup:                                          
1. configure server nginx with following nginx.conf (appended to the tail)

2. request server with WRK
   ./wrk -t 64 -c 1024 -d 40 --latency http://$server_ip:10802/1KB.json

Debugging summary:
 Bisect identified "commit 371d7955e310 iommu/iova: Improve restart logic"
 as cause.

nginx.conf
user nginx; 
worker_processes 16;
error_log /var/log/nginx/error.log crit;
pid /var/run/nginx.pid; 
events {
worker_connections 4000;
use epoll;
multi_accept on;
}
http {
include /etc/nginx/mime.types; 
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
		'$status $body_bytes_sent "$http_referer" '
		'"$http_user_agent" "$http_x_forwarded_for"';
access_log off;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65; 
keepalive_requests 20480; 
gzip_min_length 10240;
gzip_comp_level 1;
gzip_vary on;
gzip_disable msie6;
gzip_proxied expired no-cache no-store private auth; 
gzip_types
# text/html is always compressed by HttpGzipModule
	text/css
	text/javascript
	text/xml
	text/plain
	text/x-component 
	application/javascript 
	application/x-javascript 
	application/json 
	application/xml 
	application/rss+xml 
	application/atom+xml 
	font/truetype
	font/opentype 
	application/vnd.ms-fontobject 
	image/svg+xml;

reset_timedout_connection on;
client_body_timeout 10;
send_timeout 2;
include /etc/nginx/conf.d/*.conf; 
server {
	listen 10802;
    server_name  localhost;
    location / {
        root   /usr/share/nginx/html;
        index  index.html index.htm;
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        #root   /usr/share/nginx/html;
        root   /ramdisk;
	}
    location /1KB.json {
               return 202 '{"status":"success","result":"\
                           Hello from  NGINX, 2KB test\
                           Nanchang, which was the capital of Yuzhang Prefecture during the HanDynasty, \
                           now falls under the jurisdiction of Hongzhou. It straddles the borderof the \
                           influence of the Ye and Zhen constellations , and is adjacent to theHeng \
                           and the Lu mountains . The three rivers enfold it like the frontpart \
                           of a garment and the five lakes encircle it like a girdle. Itcontrols \
                           nature’s jewels. The radiance of its legendary sword shootsdirectly upward \
                           between the constellations Niu and Dou. Its talented peopleare outstanding,\
                           and the spirit of intelligence pervades the place. This wasthe place where Xu \
                           Ru spent the night on his visit to Chen Fan (10). The mightyHongzhou spreads \
                           meteors chasing one another.\
                           "}';
          }
 }
}
-- 
2.31.1


             reply	other threads:[~2024-01-03  4:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-03  4:55 Ethan Zhao [this message]
2024-01-03  4:57 ` Ethan Zhao
2024-01-06  4:25   ` Ethan Zhao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240103045506.1077586-1-haifeng.zhao@linux.intel.com \
    --to=haifeng.zhao@linux.intel.com \
    --cc=iommu@lists.linux.dev \
    --cc=linux-kernel@vger.kernel.org \
    --cc=regressions@lists.linux.dev \
    --cc=robin.murphy@arm.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®