summaryrefslogtreecommitdiff
path: root/user/haveged/fix-cpu-cache-size-detection.patch
diff options
context:
space:
mode:
authorA. Wilcox <awilcox@wilcox-tech.com>2019-10-15 19:52:48 +0000
committerA. Wilcox <awilcox@wilcox-tech.com>2019-10-15 19:52:48 +0000
commit977a74ae83e627094a4228984fbd181fffeae1df (patch)
treebdf96049ae0562c4bad9610d7f90fc801aac536e /user/haveged/fix-cpu-cache-size-detection.patch
parentdd60f61239bc94e9ebba77cd4729f0217859baa0 (diff)
parentab4ea5a14d0ae6b6f20e308439f31ea4b42a8e55 (diff)
downloadpackages-977a74ae83e627094a4228984fbd181fffeae1df.tar.gz
packages-977a74ae83e627094a4228984fbd181fffeae1df.tar.bz2
packages-977a74ae83e627094a4228984fbd181fffeae1df.tar.xz
packages-977a74ae83e627094a4228984fbd181fffeae1df.zip
Merge branch 'sr.2019.10.03' into 'master'
Miscellaneous bumps, 2019.10.03 See merge request adelie/packages!361
Diffstat (limited to 'user/haveged/fix-cpu-cache-size-detection.patch')
-rw-r--r--user/haveged/fix-cpu-cache-size-detection.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/user/haveged/fix-cpu-cache-size-detection.patch b/user/haveged/fix-cpu-cache-size-detection.patch
deleted file mode 100644
index 07da2b46d..000000000
--- a/user/haveged/fix-cpu-cache-size-detection.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Some ARM cpus does not report the cache size or say it is -1
-
-diff --git a/src/havegetune.c b/src/havegetune.c
-index f1a99f2..de39c53 100644
---- a/src/havegetune.c
-+++ b/src/havegetune.c
-@@ -795,6 +795,8 @@ static int vfs_configInfoCache(
- ctype = vfs_configFile(pAnchor, path, vfs_configType);
- strcpy(path+plen, "size");
- size = vfs_configFile(pAnchor, path, vfs_configInt);
-+ if (size == -1)
-+ size = ctype == 'I' ? GENERIC_ICACHE : GENERIC_DCACHE;
- cfg_cacheAdd(pAnchor, SRC_VFS_INDEX, pArgs[1], level, ctype, size);
- }
- }