Searched +full:pull +full:- +full:requests (Results 1 – 8 of 8) sorted by relevance
/qemu/docs/devel/ |
H A D | submitting-a-pull-request.rst | 1 .. _submitting-a-pull-request: 3 Submitting a Pull Request 8 :ref:`submitting-a-patch` 10 will need to submit pull requests, although occasionally for a large 11 patch series we might ask a submitter to send a pull request. This page 12 documents our recommendations on pull requests for those people. 14 A good rule of thumb is not to send a pull request unless somebody asks 17 **Resend the patches with the pull request** as emails which are 18 threaded as follow-ups to the pull request itself. The simplest way to 19 do this is to use ``git format-patch --cover-letter`` to create the [all …]
|
H A D | maintainers.rst | 11 - reviewing patches and suggesting changes 12 - collecting patches and preparing pull requests 13 - tending to the long term health of their area 14 - participating in other project activities 22 -------------------- 25 <https://gitlab.com/qemu-project/qemu/-/blob/master/MAINTAINERS>`__ 34 .. list-table:: Meaning of support status in MAINTAINERS 36 :header-rows: 1 38 * - Status 39 - Meaning [all …]
|
H A D | trivial-patches.rst | 1 .. _trivial-patches: 7 -------- 14 The trivial patches team take on the task of reviewing and building pull 15 requests for patches that: 17 - Do not fall under an actively maintained subsystem. 18 - Are single patches or short series (max 2-4 patches). 19 - Only touch a few lines of code. 22 qemu-trivial@nongnu.org.** 25 ------------ 30 - git://github.com/vivier/qemu.git trivial-patches - `browse <https://github.com/vivier/qemu/tree/t… [all …]
|
/qemu/docs/devel/testing/ |
H A D | ci.rst | 16 These tests are also used as gating tests before merging pull requests. 21 On QEMU, the gating process happens during the pull request. The approval is 22 done by the project leader running its own set of tests. The pull request gets 25 .. include:: ci-jobs.rst.inc 26 .. include:: ci-runners.rst.inc 29 ----------
|
/qemu/.github/workflows/ |
H A D | lockdown.yml | 1 # Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown 10 pull-requests: write 14 runs-on: ubuntu-latest 16 - uses: dessant/repo-lockdown@v2 18 pr-comment: | 21 This repository is a read-only mirror of the project's repostories hosted 22 on https://gitlab.com/qemu-project/qemu.git. 23 The project does not process merge requests filed on GitHub. 29 lock-pr: true 30 close-pr: true
|
/qemu/docs/ |
H A D | glossary.rst | 3 -------- 5 -------- 11 ----------- 14 hardware-based, through a virtualization API provided by the host OS (kvm, hvf, 15 whpx, ...), or software-based (tcg). See this description of `supported 19 ----- 24 ----- 26 Block drivers are the available `disk formats and front-ends 27 <block-drivers>` available, and block devices `(see Block device section on 32 --- [all …]
|
/qemu/hw/sh4/ |
H A D | sh7750_regs.h | 2 * SH-7750 memory-mapped registers 6 * Document Number ADE-602-124C, Rev. 4.0, 4/21/00, Hitachi Ltd. 8 * Copyright (C) 2001 OKTET Ltd., St.-Petersburg, Russia 42 * All register has 2 addresses: in 0xff000000 - 0xffffffff (P4 address) and 43 * in 0x1f000000 - 0x1fffffff (area 7 address) 55 /* Page Table Entry High register - PTEH */ 64 /* Page Table Entry Low register - PTEL */ 70 #define SH7750_PTEL_V 0x00000100 /* Validity (0-entry is invalid) */ 73 #define SH7750_PTEL_SZ_1KB 0x00000000 /* 1-kbyte page */ 74 #define SH7750_PTEL_SZ_4KB 0x00000010 /* 4-kbyte page */ [all …]
|
/qemu/hw/block/dataplane/ |
H A D | xen-block.c | 17 * Contributions after 2012-01-13 are licensed under the terms of the 22 #include "qemu/defer-call.h" 23 #include "qemu/error-report.h" 24 #include "qemu/main-loop.h" 30 #include "system/block-backend.h" 32 #include "xen-block.h" 74 memset(&request->req, 0, sizeof(request->req)); in reset_request() 75 request->status = 0; in reset_request() 76 request->start = 0; in reset_request() 77 request->size = 0; in reset_request() [all …]
|