Uh oh!
There was an error while loading. Please reload this page.
unix/vxworks: make DirEntry slightly smaller - #77674
Conversation
rust-highfive
commented
Oct 7, 2020
r? @dtolnay (rust_highfive has picked a reviewer for you, use r? to override) |
dtolnay
commented
Oct 7, 2020
@bors r+ |
bors
commented
Oct 7, 2020
📌 Commit 12c94b27f3c703eede3ab7621c5e8eaaa7ef4daa has been approved by |
bors
commented
Oct 8, 2020
⌛ Testing commit 12c94b27f3c703eede3ab7621c5e8eaaa7ef4daa with merge 13edb9ca1cd1b2f50b7cb0d685d3db5ed59c35ec... |
bors
commented
Oct 8, 2020
💔 Test failed - checks-actions |
cuviper
commented
Oct 8, 2020
Fixed a clone that I had missed... @bors r=dtolnay |
bors
commented
Oct 8, 2020
📌 Commit 5f76201 has been approved by |
unix/vxworks: make DirEntry slightly smaller `DirEntry` contains a `ReadDir` handle, which used to just be a wrapper on `Arc<InnerReadDir>`. Commit af75314 added `end_of_stream: bool` which is not needed by `DirEntry`, but adds 8 bytes after padding. We can let `DirEntry` have an `Arc<InnerReadDir>` directly to avoid that.
jonas-schievink
commented
Oct 8, 2020
@bors r- rollup=iffy failed in #77712 (comment) |
`DirEntry` contains a `ReadDir` handle, which used to just be a wrapper on `Arc<InnerReadDir>`. Commit af75314 added `end_of_stream: bool` which is not needed by `DirEntry`, but adds 8 bytes after padding. We can let `DirEntry` have an `Arc<InnerReadDir>` directly to avoid that.
cuviper
commented
Oct 9, 2020
Well that's annoying -- that |
Uh oh!
There was an error while loading. Please reload this page.
Co-authored-by: David Tolnay <dtolnay@gmail.com>
dtolnay
commented
Oct 9, 2020
@bors r+ rollup=iffy |
bors
commented
Oct 9, 2020
📌 Commit 1d06b07 has been approved by |
bors
commented
Oct 9, 2020
bors
commented
Oct 9, 2020
☀️ Test successful - checks-actions, checks-azure |
DirEntrycontains aReadDirhandle, which used to just be a wrapperon
Arc<InnerReadDir>. Commit af75314 addedend_of_stream: boolwhich is not needed by
DirEntry, but adds 8 bytes after padding. Wecan let
DirEntryhave anArc<InnerReadDir>directly to avoid that.