Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
bc56a1d5
Unverified
Commit
bc56a1d5
authored
Feb 16, 2026
by
Yiqi Xue
Committed by
GitHub
Feb 16, 2026
Browse files
[Bugfix] Fix ARC touch KeyError for non-ready T1 blocks in kv offload (#34576)
Signed-off-by:
Yiqi Xue
<
xuey666@gmail.com
>
parent
ec7d9e67
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vllm/v1/kv_offload/arc_manager.py
vllm/v1/kv_offload/arc_manager.py
+2
-1
No files found.
vllm/v1/kv_offload/arc_manager.py
View file @
bc56a1d5
...
@@ -90,7 +90,8 @@ class ARCOffloadingManager(OffloadingManager):
...
@@ -90,7 +90,8 @@ class ARCOffloadingManager(OffloadingManager):
block
=
self
.
t1
.
pop
(
block_hash
)
block
=
self
.
t1
.
pop
(
block_hash
)
if
not
block
.
is_ready
:
if
not
block
.
is_ready
:
# block was just prepared to be stored, not really touched twice
# block was just prepared to be stored, not really touched twice
self
.
t1
.
move_to_end
(
block_hash
)
# keep it in T1 and mark as most recently used
self
.
t1
[
block_hash
]
=
block
else
:
else
:
self
.
t2
[
block_hash
]
=
block
self
.
t2
[
block_hash
]
=
block
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment