Skip to content

Move fcntl to 0.3.1 - #2854

Merged
bert-e merged 1 commit into
development/9.6from
improvement/BB-887
Sep 17, 2026
Merged

bert-e merged 1 commit into
development/9.6from
improvement/BB-887

Conversation

@francoisferrand

Copy link
Copy Markdown
Contributor

0.2.2 is stuck on NAN and pins node-gyp 8 internally, which no longer builds on recent Node. 0.3.0 is the N-API rewrite arsenal already depends on, so this aligns backbeat with what the tree resolves anyway and takes one blocker off the Node 24 upgrade.

Nothing else pinned 0.2.2 on this line, so it drops out of the lockfile along with the node-gyp 8 subtree it pulled in — hence the large but very one-sided yarn.lock diff (334 deletions). No package changes version and none are added; every removed entry is attributable to 0.2.2's tree. node-gyp 8 is gone entirely, only the ^11.1.0 that 0.3.0 uses remains.

The binding surface is unchanged. index.js is byte-identical between the two tags and still exports the same posixFadvise(fd, offset, len, advice). Diffing the NAN and N-API fcntl.cpp gives the same signature, same return value and the same short-circuit to 0 on macOS/Windows; the only difference is the error object built on the res < 0 branch, which posix_fadvise doesn't take since it returns the errno instead of -1. backbeat never requires fcntl directly — the only consumer is arsenal's releasePageCacheSync, which just checks ret !== 0.

Deliberately separate from the Node 24 runtime bump (BB-888): this is a NAN to N-API swap of a native module, so it should be visible on its own rather than tangled with a runtime change. Nothing here bumps Node, the Dockerfile, CI or engines — it lands and is green on Node 22.

Verified on Node 22: yarn install --frozen-lockfile clean, native module builds and loads, real posix_fadvise exercised on linux (macOS short-circuits to 0) returning 0 for DONTNEED/WILLNEED and EBADF for a bad fd, arsenal's releasePageCacheSync works, 1984 unit tests passing, lint clean.

Issue: BB-887

@bert-e

bert-e commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

Hello francoisferrand,

My role is to assist you with the merge of this
pull request. Please type @bert-e help to get information
on this process, or consult the user documentation.

Available options
name description privileged authored
/after_pull_request Wait for the given pull request id to be merged before continuing with the current one.
/bypass_author_approval Bypass the pull request author's approval
/bypass_build_status Bypass the build and test status
/bypass_commit_size Bypass the check on the size of the changeset TBA
/bypass_incompatible_branch Bypass the check on the source branch prefix
/bypass_jira_check Bypass the Jira issue check
/bypass_peer_approval Bypass the pull request peers' approval
/bypass_leader_approval Bypass the pull request leaders' approval
/bypass_source_branch_lineage Bypass the cross-branch contamination check
/approve Instruct Bert-E that the author has approved the pull request. ✍️
/create_pull_requests Allow the creation of integration pull requests.
/create_integration_branches Allow the creation of integration branches.
/no_octopus Prevent Wall-E from doing any octopus merge and use multiple consecutive merge instead
/unanimity Change review acceptance criteria from one reviewer at least to all reviewers
/wait Instruct Bert-E not to run until further notice.
Available commands
name description privileged
/help Print Bert-E's manual in the pull request.
/status Print Bert-E's current status in the pull request.
/clear Remove all comments from Bert-E from the history TBA
/retry Re-start a fresh build TBA
/build Re-start a fresh build TBA
/force_reset Delete integration branches & pull requests, and restart merge process from the beginning.
/reset Try to remove integration branches unless there are commits on them which do not appear on the source branch.

Status report is not available.

@francoisferrand
francoisferrand changed the base branch from development/9.0 to development/9.6 September 16, 2026 17:30
@codecov

codecov Bot commented Sep 16, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 76.72%. Comparing base (3a2229b) to head (57765e8).
⚠️ Report is 1 commits behind head on development/9.6.

Additional details and impacted files

Impacted file tree graph
see 7 files with indirect coverage changes

Components Coverage Δ
Bucket Notification 80.25% <ø> (ø)
Core Library 84.12% <ø> (+0.30%) ⬆️
Ingestion 75.65% <ø> (ø)
Lifecycle 81.65% <ø> (ø)
Oplog Populator 85.83% <ø> (ø)
Replication 63.92% <ø> (ø)
Bucket Scanner 85.76% <ø> (ø)
@@                 Coverage Diff                 @@
##           development/9.6    #2854      +/-   ##
===================================================
+ Coverage            76.60%   76.72%   +0.12%     
===================================================
  Files                  206      206              
  Lines                14450    14450              
===================================================
+ Hits                 11069    11087      +18     
+ Misses                3371     3353      -18     
  Partials                10       10              
Flag Coverage Δ
api:retry 9.18% <ø> (ø)
api:routes 8.95% <ø> (ø)
bucket-scanner 85.76% <ø> (ø)
ft_test:queuepopulator 11.52% <ø> (+0.34%) ⬆️
ingestion 12.72% <ø> (ø)
lib 8.96% <ø> (+0.02%) ⬆️
lifecycle 20.48% <ø> (+0.01%) ⬆️
notification 0.98% <ø> (ø)
oplogPopulator 0.13% <ø> (ø)
replication 18.86% <ø> (+0.09%) ⬆️
unit 57.88% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@francoisferrand
francoisferrand requested review from a team, DarkIsDude and delthas September 16, 2026 17:33
@scality scality deleted a comment from bert-e Sep 16, 2026
@scality scality deleted a comment from bert-e Sep 16, 2026
@bert-e

bert-e commented Sep 16, 2026

Copy link
Copy Markdown
Contributor

Waiting for approval

The following approvals are needed before I can proceed with the merge:

  • the author

  • 2 peers

Comment thread package.json Outdated
@francoisferrand francoisferrand changed the title Move fcntl to 0.3.0 Move fcntl to 0.3.1 Sep 17, 2026
Use the latest Node 22 compatible N-API node-fcntl tag after its smoke-test refresh.

Issue: BB-887

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
@francoisferrand

Copy link
Copy Markdown
Contributor Author

/approve

@bert-e

bert-e commented Sep 17, 2026

Copy link
Copy Markdown
Contributor

I have successfully merged the changeset of this pull request
into targetted development branches:

  • ✔️ development/9.6

The following branches have NOT changed:

  • development/7.10
  • development/7.4
  • development/7.70
  • development/8.6
  • development/9.0
  • development/9.1
  • development/9.2
  • development/9.3
  • development/9.4
  • development/9.5

This pull request did not target the following hotfix branch(es) so they
were left untouched:

  • hotfix/7.10.8
  • hotfix/9.0.7
  • hotfix/7.4.4
  • hotfix/7.4.5
  • hotfix/7.4.6
  • hotfix/7.8.0
  • hotfix/7.9.0
  • hotfix/7.4.2
  • hotfix/7.10.4
  • hotfix/7.4.7
  • hotfix/7.6.0
  • hotfix/7.4.8
  • hotfix/7.4.10
  • hotfix/7.4.9
  • hotfix/7.4.3
  • hotfix/7.2.0
  • hotfix/7.10.0
  • hotfix/7.10.12
  • hotfix/7.70.12
  • hotfix/7.7.0
  • hotfix/7.10.1
  • hotfix/9.0.4
  • hotfix/8.2.12
  • hotfix/7.70.15
  • hotfix/7.4.0
  • hotfix/7.4.1
  • hotfix/7.10.2
  • hotfix/7.10.3
  • hotfix/7.70.1
  • hotfix/7.10.17

Please check the status of the associated issue BB-887.

Goodbye francoisferrand.

The following options are set: approve

@bert-e
bert-e merged commit 57765e8 into development/9.6 Sep 17, 2026
24 checks passed
@bert-e
bert-e deleted the improvement/BB-887 branch September 17, 2026 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants