From: Jackie Liu <jackieliu@byteisland.com> To: axboe@kernel.dk Cc: io-uring@vger.kernel.org Subject: [PATCH 1/2] io_uring: remove parameter ctx of io_submit_state_start Date: Mon, 2 Dec 2019 17:14:52 +0800 Message-ID: <20191202091453.3038-1-jackieliu@byteisland.com> (raw) From: Jackie Liu <liuyun01@kylinos.cn> Parameter ctx we have never used, clean it up. checkpatch.pl said: WARNING: Prefer 'unsigned int' to bare use of 'unsigned' Signed-off-by: Jackie Liu <liuyun01@kylinos.cn> --- fs/io_uring.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fs/io_uring.c b/fs/io_uring.c index 2c2e8c25da01..9c55af1c1f22 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -3112,7 +3112,7 @@ static void io_submit_state_end(struct io_submit_state *state) * Start submission side cache. */ static void io_submit_state_start(struct io_submit_state *state, - struct io_ring_ctx *ctx, unsigned max_ios) + unsigned int max_ios) { blk_start_plug(&state->plug); state->free_reqs = 0; @@ -3196,7 +3196,7 @@ static int io_submit_sqes(struct io_ring_ctx *ctx, unsigned int nr, return -EBUSY; if (nr > IO_PLUG_THRESHOLD) { - io_submit_state_start(&state, ctx, nr); + io_submit_state_start(&state, nr); statep = &state; } -- 2.17.1
next reply index Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top 2019-12-02 9:14 Jackie Liu [this message] 2019-12-02 9:14 ` [PATCH 2/2] io_uring: remove io_wq_current_is_worker Jackie Liu 2019-12-03 3:03 ` [PATCH 1/2] io_uring: remove parameter ctx of io_submit_state_start Jens Axboe
Reply instructions: You may reply publically 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=20191202091453.3038-1-jackieliu@byteisland.com \ --to=jackieliu@byteisland.com \ --cc=axboe@kernel.dk \ --cc=io-uring@vger.kernel.org \ /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
IO-Uring Archive on lore.kernel.org Archives are clonable: git clone --mirror https://lore.kernel.org/io-uring/0 io-uring/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 io-uring io-uring/ https://lore.kernel.org/io-uring \ io-uring@vger.kernel.org public-inbox-index io-uring Example config snippet for mirrors Newsgroup available over NNTP: nntp://nntp.lore.kernel.org/org.kernel.vger.io-uring AGPL code for this site: git clone https://public-inbox.org/public-inbox.git