-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
COMPUTE-15 Prefetch cache truncated read fix (#86)
Modify isDataInCache() such that if there is a covered range in the cache, but the read request extends beyond the last vector in the cache, treat it as DATA_OUTSIDE_CACHE
- Loading branch information
Showing
6 changed files
with
65 additions
and
67 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
module github.com/dnanexus/dxfuse | ||
|
||
go 1.16 | ||
go 1.22.6 | ||
|
||
require ( | ||
github.com/StackExchange/wmi v1.2.1 // indirect | ||
github.com/dnanexus/dxda v0.5.8 | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/jacobsa/fuse v0.0.0-20211019165009-c75d3f26fceb | ||
github.com/mattn/go-sqlite3 v1.14.9 | ||
github.com/dnanexus/dxda v0.6.2 | ||
github.com/jacobsa/fuse v0.0.0-20240721083925-faebccf4c6c6 | ||
github.com/mattn/go-sqlite3 v1.14.22 | ||
github.com/shirou/gopsutil v3.21.11+incompatible | ||
golang.org/x/exp v0.0.0-20200513190911-00229845015e | ||
golang.org/x/sync v0.8.0 | ||
) | ||
|
||
require ( | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/pbnjay/memory v0.0.0-20210728143218-7b4eea64cf58 // indirect | ||
github.com/shirou/gopsutil v3.21.9+incompatible | ||
github.com/stretchr/testify v1.7.0 // indirect | ||
github.com/tklauser/go-sysconf v0.3.9 // indirect | ||
golang.org/x/exp v0.0.0-20200513190911-00229845015e | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect | ||
github.com/tklauser/go-sysconf v0.3.14 // indirect | ||
github.com/tklauser/numcpus v0.8.0 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
) |
This file contains 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
This file contains 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