Skip to content

ublk: optimize ublk_rq_has_data()#759

Open
blktests-ci[bot] wants to merge 1 commit intolinus-master_basefrom
series/1084009=>linus-master
Open

ublk: optimize ublk_rq_has_data()#759
blktests-ci[bot] wants to merge 1 commit intolinus-master_basefrom
series/1084009=>linus-master

Conversation

@blktests-ci
Copy link
Copy Markdown

@blktests-ci blktests-ci Bot commented Apr 21, 2026

Pull request for series with
subject: ublk: optimize ublk_rq_has_data()
version: 1
url: https://patchwork.kernel.org/project/linux-block/list/?series=1084009

@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 21, 2026

Upstream branch: b4e0758
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 22, 2026

Upstream branch: 6596a02
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from f217361 to f6f99c4 Compare April 22, 2026 20:25
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 3b54e52 to 6a0b974 Compare April 23, 2026 16:58
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 23, 2026

Upstream branch: 507bd4b
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from f6f99c4 to b86483c Compare April 23, 2026 17:03
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 6a0b974 to 59ca59b Compare April 24, 2026 00:56
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 24, 2026

Upstream branch: dd6c438
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from b86483c to 498441e Compare April 24, 2026 01:00
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch 2 times, most recently from 94f0438 to 857ada9 Compare April 24, 2026 07:54
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 24, 2026

Upstream branch: dd6c438
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from 498441e to 5dae3cf Compare April 24, 2026 07:55
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 857ada9 to 482ce5b Compare April 29, 2026 02:21
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 29, 2026

Upstream branch: dca922e
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from 5dae3cf to 1e9bd40 Compare April 29, 2026 02:29
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 482ce5b to 5a9f7c7 Compare April 30, 2026 07:29
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented Apr 30, 2026

Upstream branch: e75a43c
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from 1e9bd40 to 645c890 Compare April 30, 2026 07:36
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 5a9f7c7 to 25a041f Compare May 3, 2026 02:07
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented May 3, 2026

Upstream branch: 66edb90
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from 645c890 to edd3b36 Compare May 3, 2026 02:44
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 25a041f to 6f75bd1 Compare May 4, 2026 10:57
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented May 4, 2026

Upstream branch: 6d35786
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from edd3b36 to 31b3f6e Compare May 4, 2026 11:34
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 6f75bd1 to 1f0d33a Compare May 5, 2026 15:39
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented May 5, 2026

Upstream branch: 6d35786
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from 31b3f6e to a4723f9 Compare May 5, 2026 16:05
@blktests-ci blktests-ci Bot force-pushed the linus-master_base branch from 1f0d33a to b1870f6 Compare May 10, 2026 15:59
ublk_rq_has_data() currently uses bio_has_data(), which involves 2
indirections and several branches. Use blk_rq_bytes() instead, which
performs a single indirection with no branches.

Signed-off-by: Caleb Sander Mateos <csander@purestorage.com>
@blktests-ci
Copy link
Copy Markdown
Author

blktests-ci Bot commented May 10, 2026

Upstream branch: aa54b1d
series: https://patchwork.kernel.org/project/linux-block/list/?series=1084009
version: 1

@blktests-ci blktests-ci Bot force-pushed the series/1084009=>linus-master branch from a4723f9 to f8166c1 Compare May 10, 2026 16:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant