[arch-commits] Commit in deepin-anything-arch/trunk (3 files)

Felix Yan felixonmars at archlinux.org
Fri Feb 5 09:17:55 UTC 2021


    Date: Friday, February 5, 2021 @ 09:17:55
  Author: felixonmars
Revision: 845805

upgpkg: deepin-anything-arch 5.0.7-1

Modified:
  deepin-anything-arch/trunk/PKGBUILD
Deleted:
  deepin-anything-arch/trunk/0001-linux-5.6.patch
  deepin-anything-arch/trunk/0002-linux-5.10.patch

-----------------------+
 0001-linux-5.6.patch  |   40 -----------------------------
 0002-linux-5.10.patch |   65 ------------------------------------------------
 PKGBUILD              |   16 ++++-------
 3 files changed, 6 insertions(+), 115 deletions(-)

Deleted: 0001-linux-5.6.patch
===================================================================
--- 0001-linux-5.6.patch	2021-02-05 09:17:30 UTC (rev 845804)
+++ 0001-linux-5.6.patch	2021-02-05 09:17:55 UTC (rev 845805)
@@ -1,40 +0,0 @@
-diff --git a/kernelmod/vfs_change.c b/kernelmod/vfs_change.c
-index 6a0e334..e25faf4 100644
---- a/kernelmod/vfs_change.c
-+++ b/kernelmod/vfs_change.c
-@@ -125,7 +125,11 @@ static ssize_t copy_vfs_changes(struct TIMESTRUCT *last, char* buf, size_t size)
- 			))
- 			continue;
- 
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
- 		time_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
-+#else
-+		time64_t shifted_secs = vc->ts.tv_sec + hour_shift*3600;
-+#endif
- 		struct tm ts;
- #if LINUX_VERSION_CODE < KERNEL_VERSION(4, 20, 0)
- 		time_to_tm(shifted_secs, 0, &ts);
-@@ -333,6 +337,7 @@ static long ioctl_vfs_changes(struct file* filp, unsigned int cmd, unsigned long
- 	}
- }
- 
-+#if LINUX_VERSION_CODE < KERNEL_VERSION(5, 6, 0)
- static struct file_operations procfs_ops = {
- 	.owner = THIS_MODULE,
- 	.open = open_vfs_changes,
-@@ -342,6 +347,15 @@ static struct file_operations procfs_ops = {
- 	//.llseek = generic_file_llseek,
- 	.release = release_vfs_changes,
- };
-+#else
-+static struct proc_ops procfs_ops = {
-+	.proc_open = open_vfs_changes,
-+	.proc_read = read_vfs_changes,
-+	.proc_ioctl = ioctl_vfs_changes,
-+	.proc_lseek = no_llseek,
-+	.proc_release = release_vfs_changes,
-+};
-+#endif
- 
- int __init init_vfs_changes(void)
- {

Deleted: 0002-linux-5.10.patch
===================================================================
--- 0002-linux-5.10.patch	2021-02-05 09:17:30 UTC (rev 845804)
+++ 0002-linux-5.10.patch	2021-02-05 09:17:55 UTC (rev 845805)
@@ -1,65 +0,0 @@
-From 5b6a3aa4ab5207e4c7d85dd076069c146661248b Mon Sep 17 00:00:00 2001
-From: 李成刚 <lichenggang at uniontech.com>
-Date: Thu, 24 Dec 2020 17:36:40 +0800
-Subject: [PATCH] feat: add support for Linux 5.10 Task: https://pms.uniontech.com/zentao/story-view-7528.html
-
-Change-Id: I02c1ec5e29a495cef0a03088e425790e89286160
----
-
-diff --git a/debian/changelog b/debian/changelog
-index 94f2361..7876d60 100644
---- a/debian/changelog
-+++ b/debian/changelog
-@@ -1,3 +1,9 @@
-+deepin-anything (5.0.2+dde) unstable; urgency=medium
-+
-+  * add support for Linux 5.10.
-+
-+ -- Deepin Package Builder <lichenggang at uniontech.com>  Thu, 24 Dec 2020 17:17:33 +0800
-+
- deepin-anything (20180315+1) unstable; urgency=medium
- 
-   * Initial release.
-diff --git a/kernelmod/vfs_utils.c b/kernelmod/vfs_utils.c
-index 2549e10..75139dd 100644
---- a/kernelmod/vfs_utils.c
-+++ b/kernelmod/vfs_utils.c
-@@ -6,6 +6,7 @@
- #include <linux/slab.h>
- #include <linux/uaccess.h>
- #include <linux/file.h>
-+#include <linux/version.h>
- 
- #include "vfs_utils.h"
- 
-@@ -23,9 +24,13 @@
- 		pr_err("error opening %s\n", filename);
- 		return 0;
- 	}
--	mm_segment_t old_fs = get_fs();
--	set_fs(KERNEL_DS);
- 
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
-+        mm_segment_t old_fs = force_uaccess_begin();
-+#else
-+        mm_segment_t old_fs = get_fs();
-+        set_fs(KERNEL_DS);
-+#endif
- 	// i_size_read is useless here because procfs does not have i_size
- 	// loff_t size = i_size_read(file_inode(filp));
- 	char *buf = 0;
-@@ -46,7 +51,13 @@
- 		size += ALLOC_UNIT;
- 		kfree(buf);
- 	}
--	set_fs(old_fs);
-+
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 10, 0)
-+        force_uaccess_end(old_fs);
-+#else
-+        set_fs(old_fs);
-+#endif	
-+	
- 	filp_close(filp, 0);
- 	// pr_info("%s size: %d\n", filename, *real_size);
- 	return buf;

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2021-02-05 09:17:30 UTC (rev 845804)
+++ PKGBUILD	2021-02-05 09:17:55 UTC (rev 845805)
@@ -1,8 +1,8 @@
 # Maintainer: Felix Yan <felixonmars at archlinux.org>
 
 pkgname=deepin-anything-arch
-pkgver=5.0.1
-pkgrel=142
+pkgver=5.0.7
+pkgrel=1
 pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
 arch=('x86_64')
 url="https://github.com/linuxdeepin/deepin-anything"
@@ -10,17 +10,13 @@
 makedepends=('linux-headers')
 provides=('DEEPIN-ANYTHING-MODULE')
 replaces=('deepin-anything-module')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz"
-        '0001-linux-5.6.patch'
-        '0002-linux-5.10.patch')
-sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
-            '5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b'
-            '6200580088b6f49a9078119720ddbe4f9fe6faf5bc9d8a51d9a35d30271887f9cf75337f669b2c97cefa8c5d94aae20ddc44350a27a33d503af2ac1170f6a0c9')
+source=("https://github.com/linuxdeepin/deepin-anything/archive/$pkgver/deepin-anything-$pkgver.tar.gz")
+sha512sums=('51e8488b4d0652d24afd1b5bd74e88140e2754354bfa85639c668479deca25e8163f3ffcf8bc1c6629d97d1cea24de89c65a76b8c9902745911fd0ed9b12b770')
 
 prepare() {
   cd deepin-anything-$pkgver
-  patch -Np1 < ../0001-linux-5.6.patch
-  patch -Np1 < ../0002-linux-5.10.patch
+  # https://github.com/linuxdeepin/deepin-anything/issues/36
+  sed -i '454s/return;/return -1;/' kernelmod/vfs_kretprobes.c
 }
 
 build() {



More information about the arch-commits mailing list