https://git.reactos.org/?p=reactos.git;a=commitdiff;h=96eacfc352adb9d37ab23…
commit 96eacfc352adb9d37ab2324a62518106eeb2bddc
Author: Mark Jansen <mark.jansen(a)reactos.org>
AuthorDate: Sun May 15 17:59:37 2022 +0200
Commit: Mark Jansen <mark.jansen(a)reactos.org>
CommitDate: Sun May 29 20:10:31 2022 +0200
[GITHUB] Add workflow to close stale PR's
---
.github/workflows/stale.yml | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
new file mode 100644
index 00000000000..a243274f9f8
--- /dev/null
+++ b/.github/workflows/stale.yml
@@ -0,0 +1,32 @@
+# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
+#
+# You can adjust the behavior by modifying this file.
+# For more information, see:
+# https://github.com/actions/stale
+name: Mark stale issues and pull requests
+
+on:
+ schedule:
+ - cron: '43 0 * * *'
+
+jobs:
+ stale:
+
+ runs-on: ubuntu-latest
+ permissions:
+ issues: write
+ pull-requests: write
+
+ steps:
+ - uses: actions/stale@v5
+ with:
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ days-before-stale: 120
+ days-before-issue-stale: -1
+ days-before-close: 14
+ days-before-issue-close: -1
+ exempt-all-assignees: true
+ stale-pr-message: 'This PR is stale because it received no updates in the last 4 months. Without removing the stale label, or commenting on this ticket it will be closed in 2 weeks.'
+ stale-issue-label: 'no-issue-activity'
+ stale-pr-label: 'no-pr-activity'
+ operations-per-run: 50
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=cc99b9d96e22934723b67…
commit cc99b9d96e22934723b67f5ad4c8d3bcc60aeeff
Author: Tuur Martens <tuurmartens4(a)gmail.com>
AuthorDate: Mon May 23 21:08:17 2022 +0200
Commit: George Bișoc <george.bisoc(a)reactos.org>
CommitDate: Sun May 29 13:28:27 2022 +0200
[NTOS:MM] Fix MiInsertSharedUserPageVad preventing boot on x64
Fix MiInsertSharedUserPageVad to not charge the system process pool quota.
Even though PsChargeProcessNonPagedPoolQuota itself checks if the process specified is the system process, this doesn't work here as we're too early into boot for the kernel to know what the system process is.
---
ntoskrnl/mm/ARM3/procsup.c | 13 ++++++++-----
1 file changed, 8 insertions(+), 5 deletions(-)
diff --git a/ntoskrnl/mm/ARM3/procsup.c b/ntoskrnl/mm/ARM3/procsup.c
index 2ddd91c5ca2..4111d711e3c 100644
--- a/ntoskrnl/mm/ARM3/procsup.c
+++ b/ntoskrnl/mm/ARM3/procsup.c
@@ -901,12 +901,15 @@ MiInsertSharedUserPageVad(
return Status;
}
- Status = PsChargeProcessNonPagedPoolQuota(Process, sizeof(MMVAD_LONG));
- if (!NT_SUCCESS(Status))
+ if (Process->QuotaBlock != NULL)
{
- DPRINT1("Ran out of quota.\n");
- ExFreePoolWithTag(Vad, 'ldaV');
- return Status;
+ Status = PsChargeProcessNonPagedPoolQuota(Process, sizeof(MMVAD_LONG));
+ if (!NT_SUCCESS(Status))
+ {
+ DPRINT1("Ran out of quota.\n");
+ ExFreePoolWithTag(Vad, 'ldaV');
+ return Status;
+ }
}