https://git.reactos.org/?p=reactos.git;a=commitdiff;h=f4ccc518e35fe7747cfdf…
commit f4ccc518e35fe7747cfdf0d92173d0b8cac29222
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sat Oct 16 11:33:53 2021 -0400
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Wed Oct 27 19:27:33 2021 -0400
[CODEOWNERS] Don't automatically add me to apitests and CMake PRs.
Still feel free to request my review explicitly if desired.
---
CODEOWNERS | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/CODEOWNERS b/CODEOWNERS
index 13d3ad435c6..86f8aa11961 100644
--- a/CODEOWNERS
+++ b/CODEOWNERS
@@ -39,7 +39,7 @@
## As responsible, he may refuse a local patch if you did not try to
## upstream your changes.
-## If you want to get listed in that file, either put yourself in the
+## If you want to get listed in this file, either put yourself in the
## file and push it, or open a pull request. You can also ask a person
## who has push access to add yourself.
@@ -121,8 +121,8 @@
# R: learn-more, learn_more, Mark Jansen
# R: ThFabba, Thomas Faber
# S: Maintained
-/sdk/cmake/ @learn-more @ThFabba
-*.cmake @learn-more @ThFabba
+/sdk/cmake/ @learn-more
+*.cmake @learn-more
# File Patch API
# M: learn-more, learn_more, Mark Jansen
@@ -225,7 +225,7 @@
# R: learn-more, learn_more, Mark Jansen
# R: ThFabba, Thomas Faber
# S: Maintained
-/modules/rostests/apitests/ @learn-more @ThFabba
+/modules/rostests/apitests/ @learn-more
# ReactOS Kernel-Mode Tests
# M: ThFabba, Thomas Faber
https://git.reactos.org/?p=reactos.git;a=commitdiff;h=4eb45209ea9782abf5e2c…
commit 4eb45209ea9782abf5e2c766d696ad9a75b5d076
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sat Oct 9 13:47:26 2021 -0400
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Wed Oct 27 19:27:27 2021 -0400
[NDIS] Allow timer initialization at DISPATCH_LEVEL.
Spotted by Mortal Wombat.
---
drivers/network/ndis/ndis/time.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/drivers/network/ndis/ndis/time.c b/drivers/network/ndis/ndis/time.c
index a35ea90107a..5234447da4c 100644
--- a/drivers/network/ndis/ndis/time.c
+++ b/drivers/network/ndis/ndis/time.c
@@ -80,10 +80,10 @@ NdisInitializeTimer(
* FunctionContext: context (param 2) to be passed to the timer function when it runs
* NOTES:
* - TimerFunction will be called at DISPATCH_LEVEL
- * - call at IRQL = PASSIVE_LEVEL
+ * - Must be called at IRQL <= DISPATCH_LEVEL
*/
{
- PAGED_CODE();
+ ASSERT_IRQL(DISPATCH_LEVEL);
ASSERT(Timer);
KeInitializeTimer (&Timer->Timer);
@@ -203,10 +203,10 @@ NdisMInitializeTimer(
* FunctionContext: argument passed to TimerFunction when it is called
* NOTES:
* - TimerFunction is called at IRQL = DISPATCH_LEVEL
- * - call at IRQL = PASSIVE_LEVEL
+ * - Must be called at IRQL <= DISPATCH_LEVEL
*/
{
- PAGED_CODE();
+ ASSERT_IRQL(DISPATCH_LEVEL);
ASSERT(Timer);
KeInitializeTimer (&Timer->Timer);