[docker-fpm-frr]: Fix tcmalloc package name for Trixie armhf#27704
Merged
qiluo-msft merged 1 commit intoJun 4, 2026
Merged
Conversation
On Trixie armhf, the Debian time64 transition renames libgoogle-perftools4 to libgoogle-perftools4t64. The old package name has no installation candidate on armhf, breaking the marvell-prestera-armhf build. Use libgoogle-perftools4t64 which is available on all Trixie architectures (amd64, arm64, armhf). Fixes: sonic-net#27580 (comment) Signed-off-by: Deepak Singhal <deepsinghal@microsoft.com>
Collaborator
|
/azp run Azure.sonic-buildimage |
|
Azure Pipelines successfully started running 1 pipeline(s). |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR fixes a Debian Trixie time64 transition packaging issue in the docker-fpm-frr image by updating the runtime tcmalloc dependency to the correct package name for Trixie-based builds.
Changes:
- Update FRR tcmalloc runtime dependency from
libgoogle-perftools4tolibgoogle-perftools4t64in thedocker-fpm-frrDockerfile template.
qiluo-msft
approved these changes
Jun 3, 2026
6 tasks
saiarcot895
approved these changes
Jun 4, 2026
Contributor
Author
|
Hi @rlhui @yxieca @lguohan could you help merge this PR? also this is needed for 202605 as well, please help approve cherry-pick too. @vaibhavhd fyi, |
Collaborator
|
Cherry-pick PR to 202605: #27758 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why I did it
PR #27580 (FRR tcmalloc build) introduced
libgoogle-perftools4as a runtime dependency in the docker-fpm-frr Dockerfile. This breaks the marvell-prestera-armhf build because on Debian Trixie armhf, the time64 transition renames this package tolibgoogle-perftools4t64— the old name has no installation candidate.The CI did not catch this because docker-fpm-frr was cached for the armhf build during the original PR validation.
How I did it
Changed
libgoogle-perftools4→libgoogle-perftools4t64indockers/docker-fpm-frr/Dockerfile.j2.Since docker-fpm-frr is always Trixie-based (
DOCKER_SWSS_LAYER_TRIXIE),libgoogle-perftools4t64is the correct package name for all architectures (amd64, arm64, armhf). This matches the pattern used by:sonic-slave-trixie/Dockerfile.j2(line 227):libgoogle-perftools4t64dockers/docker-platform-monitor/Dockerfile.j2:librrd8t64dockers/docker-sonic-mgmt-framework/Dockerfile.j2:libcurl4t64How to verify it
libgoogle-perftools4t64exists on Trixie for both armhf and amd64 via Debian package trackerWhich release branch to backport
Tested branch
master
Description for the changelog
Fix docker-fpm-frr tcmalloc dependency package name for Trixie armhf (time64 transition)
Link to config_db schema for YANG module changes
N/A