Version bump
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,17 @@
|
||||
--- a/fs/namei.c 2022-01-23 13:02:27.876558299 -0500
|
||||
+++ b/fs/namei.c 2022-03-06 12:47:39.375719693 -0500
|
||||
@@ -1020,10 +1020,10 @@ static inline void put_link(struct namei
|
||||
path_put(&last->link);
|
||||
}
|
||||
|
||||
-static int sysctl_protected_symlinks __read_mostly;
|
||||
-static int sysctl_protected_hardlinks __read_mostly;
|
||||
-static int sysctl_protected_fifos __read_mostly;
|
||||
-static int sysctl_protected_regular __read_mostly;
|
||||
+static int sysctl_protected_symlinks __read_mostly = 1;
|
||||
+static int sysctl_protected_hardlinks __read_mostly = 1;
|
||||
+int sysctl_protected_fifos __read_mostly = 1;
|
||||
+int sysctl_protected_regular __read_mostly = 1;
|
||||
|
||||
#ifdef CONFIG_SYSCTL
|
||||
static struct ctl_table namei_sysctls[] = {
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,30 +0,0 @@
|
||||
From 4157360d2e1cbdfb8065f151dbe057b17188a23f Mon Sep 17 00:00:00 2001
|
||||
From: Tor Vic <torvic9@mailbox.org>
|
||||
Date: Mon, 7 Nov 2022 15:11:54 +0100
|
||||
Subject: [PATCH] sched/alt: Add missing rq_lock_irq() function to header file
|
||||
|
||||
---
|
||||
kernel/sched/alt_sched.h | 7 +++++++
|
||||
1 file changed, 7 insertions(+)
|
||||
|
||||
diff --git a/kernel/sched/alt_sched.h b/kernel/sched/alt_sched.h
|
||||
index 93ff3bddd36f..a00bc84b93b2 100644
|
||||
--- a/kernel/sched/alt_sched.h
|
||||
+++ b/kernel/sched/alt_sched.h
|
||||
@@ -387,6 +387,13 @@ task_rq_unlock(struct rq *rq, struct task_struct *p, struct rq_flags *rf)
|
||||
raw_spin_unlock_irqrestore(&p->pi_lock, rf->flags);
|
||||
}
|
||||
|
||||
+static inline void
|
||||
+rq_lock_irq(struct rq *rq, struct rq_flags *rf)
|
||||
+ __acquires(rq->lock)
|
||||
+{
|
||||
+ raw_spin_lock_irq(&rq->lock);
|
||||
+}
|
||||
+
|
||||
static inline void
|
||||
rq_lock(struct rq *rq, struct rq_flags *rf)
|
||||
__acquires(rq->lock)
|
||||
--
|
||||
GitLab
|
||||
|
||||
Reference in New Issue
Block a user