Skip to content

Commit 640c682

Browse files
committedNov 15, 2024·
make gen, fix lint
1 parent d4e2999 commit 640c682

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed
 

‎cmd/curio/tasks/tasks.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ func addSealingTasks(
274274
cfg.Seal.BatchSealPipelines,
275275
!cfg.Seal.SingleHasherPerThread,
276276
cfg.Seal.LayerNVMEDevices,
277-
machineHostPort, slotMgr, db, full, stor, si)
277+
machineHostPort, slotMgr, db, full, stor, si, slr)
278278
if err != nil {
279279
return nil, xerrors.Errorf("setting up batch sealer: %w", err)
280280
}

‎lib/ffi/sdr_funcs.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"crypto/rand"
66
"encoding/json"
77
"fmt"
8-
"github.com/samber/lo"
98
"io"
109
"os"
1110
"path/filepath"
@@ -15,6 +14,7 @@ import (
1514
"github.com/ipfs/go-cid"
1615
logging "github.com/ipfs/go-log/v2"
1716
"github.com/puzpuzpuz/xsync/v2"
17+
"github.com/samber/lo"
1818
"golang.org/x/xerrors"
1919

2020
"github.com/filecoin-project/curio/harmony/harmonytask"
@@ -75,8 +75,8 @@ func (l *storageProvider) AcquireSector(ctx context.Context, taskID *harmonytask
7575
var ok bool
7676
var resv *StorageReservation
7777
if taskID != nil {
78-
resvs, ok := l.storageReservations.Load(*taskID)
79-
if ok {
78+
resvs, rok := l.storageReservations.Load(*taskID)
79+
if rok {
8080
resv, ok = lo.Find(resvs, func(res *StorageReservation) bool {
8181
return res.SectorRef.ID() == sector.ID
8282
})

‎tasks/sealsupra/task_supraseal.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"encoding/hex"
66
"encoding/json"
77
"fmt"
8-
"github.com/filecoin-project/curio/lib/ffi"
98
"os"
109
"path/filepath"
1110
"time"
@@ -26,6 +25,7 @@ import (
2625
"github.com/filecoin-project/curio/harmony/harmonytask"
2726
"github.com/filecoin-project/curio/harmony/resources"
2827
"github.com/filecoin-project/curio/harmony/taskhelp"
28+
"github.com/filecoin-project/curio/lib/ffi"
2929
"github.com/filecoin-project/curio/lib/hugepageutil"
3030
"github.com/filecoin-project/curio/lib/passcall"
3131
"github.com/filecoin-project/curio/lib/paths"
@@ -64,7 +64,7 @@ type SupraSeal struct {
6464
}
6565

6666
func NewSupraSeal(sectorSize string, batchSize, pipelines int, dualHashers bool, nvmeDevices []string, machineHostAndPort string,
67-
slots *slotmgr.SlotMgr, db *harmonydb.DB, api SupraSealNodeAPI, storage *paths.Remote, sindex paths.SectorIndex) (*SupraSeal, error) {
67+
slots *slotmgr.SlotMgr, db *harmonydb.DB, api SupraSealNodeAPI, storage *paths.Remote, sindex paths.SectorIndex, sc *ffi.SealCalls) (*SupraSeal, error) {
6868
var spt abi.RegisteredSealProof
6969
switch sectorSize {
7070
case "32GiB":
@@ -222,6 +222,7 @@ func NewSupraSeal(sectorSize string, batchSize, pipelines int, dualHashers bool,
222222
api: api,
223223
storage: storage,
224224
sindex: sindex,
225+
sc: sc,
225226

226227
spt: spt,
227228
pipelines: pipelines,

0 commit comments

Comments
 (0)