Skip to content

zram: compression algorithms name use static fields#597

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

zram: compression algorithms name use static fields#597
blktests-ci[bot] wants to merge 1 commit intolinus-master_basefrom
series/1058202=>linus-master

Conversation

@blktests-ci
Copy link

@blktests-ci blktests-ci bot commented Feb 26, 2026

Pull request for series with
subject: zram: compression algorithms name use static fields
version: 1
url: https://patchwork.kernel.org/project/linux-block/list/?series=1058202

@blktests-ci
Copy link
Author

blktests-ci bot commented Feb 26, 2026

Upstream branch: 7dff99b
series: https://patchwork.kernel.org/project/linux-block/list/?series=1058202
version: 1

@blktests-ci
Copy link
Author

blktests-ci bot commented Feb 27, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from fe00675 to 5cb5b8d Compare February 27, 2026 16:31
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 14f6b99 to 856dc37 Compare February 27, 2026 22:07
@blktests-ci
Copy link
Author

blktests-ci bot commented Feb 27, 2026

Upstream branch: 4d349ee
series: https://patchwork.kernel.org/project/linux-block/list/?series=1058202
version: 1

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 5cb5b8d to 89eae70 Compare February 27, 2026 22:10
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 856dc37 to 40967f0 Compare March 2, 2026 09:22
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 2, 2026

Upstream branch: 11439c4
series: https://patchwork.kernel.org/project/linux-block/list/?series=1058202
version: 1

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 89eae70 to 269c02c Compare March 2, 2026 09:25
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 40967f0 to d4e9bad Compare March 2, 2026 23:54
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 2, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 269c02c to e8cf7f8 Compare March 2, 2026 23:58
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch 2 times, most recently from ecd10e2 to d0e1bed Compare March 4, 2026 07:45
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 4, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from e8cf7f8 to c5726bc Compare March 4, 2026 07:54
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from d0e1bed to 6b51c57 Compare March 4, 2026 09:34
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 4, 2026

Upstream branch: 0031c06
series: https://patchwork.kernel.org/project/linux-block/list/?series=1058202
version: 1

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from c5726bc to 9132df9 Compare March 4, 2026 09:37
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 6b51c57 to 78036b2 Compare March 4, 2026 19:57
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 4, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 9132df9 to d7eb5c9 Compare March 4, 2026 19:59
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 78036b2 to bbb3394 Compare March 5, 2026 12:20
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 5, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from d7eb5c9 to b34ec1d Compare March 5, 2026 12:23
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from bbb3394 to 901a429 Compare March 5, 2026 21:37
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 5, 2026

Upstream branch: 5ee8dbf
series: https://patchwork.kernel.org/project/linux-block/list/?series=1058202
version: 1

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from b34ec1d to 75d2215 Compare March 5, 2026 21:40
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 901a429 to 1f19ba6 Compare March 10, 2026 06:29
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 10, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 75d2215 to 4ff5dc3 Compare March 10, 2026 06:38
@blktests-ci blktests-ci bot force-pushed the linus-master_base branch from 1f19ba6 to e79276a Compare March 11, 2026 08:02
Currently, zram dynamically allocates memory for compressor algorithm names
when they are set by the user. This requires careful memory management,
including explicit `kfree` calls and special handling to avoid freeing
statically defined default compressor names.

This patch refactors the way zram handles compression algorithm names.
Instead of storing dynamically allocated copies, `zram->comp_algs` will now
store pointers directly to the static name strings defined within the
`zcomp_ops` backend structures, thereby removing the need for conditional
`kfree` calls.

Signed-off-by: gao xu <gaoxu2@honor.com>
@blktests-ci
Copy link
Author

blktests-ci bot commented Mar 11, 2026

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

@blktests-ci blktests-ci bot force-pushed the series/1058202=>linus-master branch from 4ff5dc3 to 91d3d26 Compare March 11, 2026 08:13
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.

0 participants