[roll] Roll fuchsia [storage] Remove uses of FutureExt::boxed

From looking at the generated assembly for fxfs and the rust VFS, Rust
doesn't typically inline FutureExt::boxed calls. Without inlining, the
future is constructed on then stack, then the memory allocation is made,
and then the future is copied to the allocation. Replacing
FutureExt::boxed with Box::new/pin causes the memory allocation to be
made first and then the future is constructed directly on the heap.

Original-Fixed: b/456517172
Original-Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/1405813
Original-Revision: 347eb49b1f8e05ae2d85f547e10fa5505758f6a0
GitOrigin-RevId: db9d790c8b4b968561f32fbb45d4f5bd5a5c968c
Change-Id: I4bad2360d92af24ed652ef6c7d5bf0cb65f3cb7e
1 file changed
tree: 8c8c6eb884836258eca6d6248b73a05989c03f04
  1. ctf/
  2. git-hooks/
  3. infra/
  4. third_party/
  5. flower
  6. jiri.lock
  7. MILESTONE
  8. minimal
  9. prebuilts
  10. README.md
  11. stem
  12. test_durations
README.md

Integration

This repository contains Fuchsia's Global Integration manifest files.

Making changes

All changes should be made to the internal version of this repository. Our infrastructure automatically updates this version when the internal one changes.

Currently all changes must be made by a Google employee. Non-Google employees wishing to make a change can ask for assistance in one of the communication channels documented at get involved.

Obtaining the source

First install Jiri.

Next run:

$ jiri init
$ jiri import minimal https://fuchsia.googlesource.com/integration
$ jiri update

Third party

Third party projects should have their own subdirectory in ./third_party.