Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 3 pull requests #90784

Merged
merged 11 commits into from
Nov 11, 2021
Merged

Rollup of 3 pull requests #90784

merged 11 commits into from
Nov 11, 2021

Commits on Nov 5, 2021

  1. Only use clone3 when needed for pidfd

    In rust-lang#89522 we learned that `clone3` is interacting poorly with Gentoo's
    `sandbox` tool. We only need that for the unstable pidfd extensions, so
    otherwise avoid that and use a normal `fork`.
    cuviper committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    85b55ce View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    fa2eee7 View commit details
    Browse the repository at this point in the history
  3. Also note tool expectations of fork vs clone3

    Co-authored-by: Josh Triplett <josh@joshtriplett.org>
    cuviper and joshtriplett committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    6edaaa6 View commit details
    Browse the repository at this point in the history
  4. Revert "Do not call getpid wrapper after fork in tests"

    This reverts commit 12fbabd.
    
    It was only needed because of using raw `clone3` instead of `fork`, but
    we only do that now when a pidfd is requested.
    cuviper committed Nov 5, 2021
    Configuration menu
    Copy the full SHA
    e96a0a8 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2021

  1. Configuration menu
    Copy the full SHA
    5c396e4 View commit details
    Browse the repository at this point in the history
  2. Update src/doc/unstable-book/src/library-features/asm.md

    Co-authored-by: Josh Triplett <josh@joshtriplett.org>
    Lokathor and joshtriplett authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    9c85ea8 View commit details
    Browse the repository at this point in the history
  3. Update src/doc/unstable-book/src/library-features/asm.md

    Co-authored-by: Josh Triplett <josh@joshtriplett.org>
    Lokathor and joshtriplett authored Nov 9, 2021
    Configuration menu
    Copy the full SHA
    a306d35 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2021

  1. Update Miri

    This is the last step in landing rust-lang/miri#1340!
    camelid committed Nov 10, 2021
    Configuration menu
    Copy the full SHA
    5443854 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#89930 - cuviper:avoid-clone3, r=joshtriplett

    Only use `clone3` when needed for pidfd
    
    In rust-lang#89522 we learned that `clone3` is interacting poorly with Gentoo's
    `sandbox` tool. We only need that for the unstable pidfd extensions, so
    otherwise avoid that and use a normal `fork`.
    
    This is a re-application of beta rust-lang#89924, now that we're aware that we need
    more than just a temporary release fix. I also reverted 12fbabd, as
    that was just fallout from using `clone3` instead of `fork`.
    
    r? `@Mark-Simulacrum`
    cc `@joshtriplett`
    matthiaskrgr authored Nov 10, 2021
    Configuration menu
    Copy the full SHA
    a09115f View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#90736 - Lokathor:inline-asm-docs-updates, r…

    …=Amanieu
    
    adjust documented inline-asm register constraints
    
    This change more clearly specifies how `reg` and `reg_thumb` work with ARM, Thumb2, and Thumb1 code.
    
    Based upon the [llvm documentation](https://llvm.org/docs/LangRef.html#supported-constraint-code-list) for register constraint codes.
    To be clear, this just updates the docs to match what already happens with rustc/llvm.
    No change in the compiler is required to make it match this new documentation.
    matthiaskrgr authored Nov 10, 2021
    Configuration menu
    Copy the full SHA
    90bb5fc View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#90783 - camelid:update-miri, r=RalfJung

    Update Miri
    
    Fixes rust-lang#90763.
    
    This is the last step in landing rust-lang/miri#1340!
    
    r? `@RalfJung`
    matthiaskrgr authored Nov 10, 2021
    Configuration menu
    Copy the full SHA
    17cb2b6 View commit details
    Browse the repository at this point in the history