kexec,memory: some utilities#2903
Conversation
Signed-off-by: Chris Koch <chrisko@google.com>
| mm.Insert(TypedRange{ | ||
| // end is inclusive. | ||
| Range: RangeFromInterval(uintptr(start), uintptr(end+1)), | ||
| Range: RangeFromInclusiveInterval(uintptr(start), uintptr(end)), |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
| mm.Insert(TypedRange{ | ||
| // end is inclusive. | ||
| Range: RangeFromInterval(uintptr(start), uintptr(end+1)), | ||
| Range: RangeFromInclusiveInterval(uintptr(start), uintptr(end)), |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
|
|
||
| // end is inclusive. | ||
| r := RangeFromInterval(uintptr(start), uintptr(end+1)) | ||
| r := RangeFromInclusiveInterval(uintptr(start), uintptr(end)) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
|
|
||
| // end is inclusive. | ||
| r := RangeFromInterval(uintptr(start), uintptr(end+1)) | ||
| r := RangeFromInclusiveInterval(uintptr(start), uintptr(end)) |
Check failure
Code scanning / CodeQL
Incorrect conversion between integer types
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #2903 +/- ##
==========================================
+ Coverage 77.52% 77.53% +0.01%
==========================================
Files 419 419
Lines 42773 42795 +22
==========================================
+ Hits 33160 33182 +22
Misses 9613 9613
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
No description provided.