[arch-commits] Commit in deepin-anything-arch/trunk (0001-linux-5.6.patch PKGBUILD)
Christian Hesse
eworm at archlinux.org
Fri Apr 3 19:56:43 UTC 2020
Date: Friday, April 3, 2020 @ 19:56:43
Author: eworm
Revision: 611201
upgpkg: deepin-anything-arch 5.0.1-64
fix for linux 5.6
Added:
deepin-anything-arch/trunk/0001-linux-5.6.patch
Modified:
deepin-anything-arch/trunk/PKGBUILD
----------------------+
0001-linux-5.6.patch | 40 ++++++++++++++++++++++++++++++++++++++++
PKGBUILD | 13 ++++++++++---
2 files changed, 50 insertions(+), 3 deletions(-)
Added: 0001-linux-5.6.patch
===================================================================
--- 0001-linux-5.6.patch (rev 0)
+++ 0001-linux-5.6.patch 2020-04-03 19:56:43 UTC (rev 611201)
@@ -0,0 +1,40 @@
+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)
+ {
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-03 19:48:01 UTC (rev 611200)
+++ PKGBUILD 2020-04-03 19:56:43 UTC (rev 611201)
@@ -2,7 +2,7 @@
pkgname=deepin-anything-arch
pkgver=5.0.1
-pkgrel=63
+pkgrel=64
pkgdesc="Deepin Anything file search tool, kernel module for Arch kernel"
arch=('x86_64')
url="https://github.com/linuxdeepin/deepin-anything"
@@ -10,9 +10,16 @@
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")
-sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/linuxdeepin/deepin-anything/archive/$pkgver.tar.gz"
+ '0001-linux-5.6.patch')
+sha512sums=('f79b4db917cce2611bd6964d00ae0e162fc500fa7ca76a987145456a9ee81296c776d2b83cf6492a4224c4e4fd95df3ad95a25c1c14d2d4e6865f5bbd639be14'
+ '5ddbd2d968bc5b01dbc99648cec81ea072675d7fe7198835649d5b581997945d32bd842dd7ebf60185aa84722b94575ac7aeb5e4616945e22fae53272907305b')
+prepare() {
+ cd deepin-anything-$pkgver
+ patch -Np1 < ../0001-linux-5.6.patch
+}
+
build() {
cd deepin-anything-$pkgver
make -C kernelmod kdir=/usr/src/linux
More information about the arch-commits
mailing list