Github messages for voidlinux
 help / color / mirror / Atom feed
From: dkwo <dkwo@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] acpi_call-dkms: update to 1.2.1 and patch for kernel 5.13
Date: Sun, 18 Jul 2021 12:46:17 +0200	[thread overview]
Message-ID: <20210718104617.uAqGmp0JS8WTzLVQPPD14A14NMt27ysfXJz_xGqIL_k@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-32022@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 642 bytes --]

There is an updated pull request by dkwo against master on the void-packages repository

https://github.com/dkwo/void-packages acpi
https://github.com/void-linux/void-packages/pull/32022

acpi_call-dkms: update to 1.2.1 and patch for kernel 5.13
I've tried to update as suggested #31968 , but when I install it fails to add the module
```
[*] Configuring unpacked packages
acpi_call-dkms-1.2.1_1: configuring ...
Failed to add DKMS module: 'acpi_call-1.2.1'...
acpi_call-dkms-1.2.1_1: updated successfully.
```
What should be changed?
Thanks.

A patch file from https://github.com/void-linux/void-packages/pull/32022.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-acpi-32022.patch --]
[-- Type: text/x-diff, Size: 5323 bytes --]

From c2a4ddd795e524973e06f21b5029f0ddaad153f7 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sat, 17 Jul 2021 17:03:00 +0200
Subject: [PATCH] acpi_call-dkms: update to 1.2.1 and patch for kernel 5.13

---
 srcpkgs/acpi_call-dkms/files/dkms.conf        |  7 +++++
 .../acpi_call-dkms/patches/linux4.12.patch    | 11 -------
 srcpkgs/acpi_call-dkms/patches/linux5.6.patch | 21 -------------
 .../patches/null_pointer_exception.patch      | 30 +++++++++++++++++++
 srcpkgs/acpi_call-dkms/template               | 12 ++++----
 5 files changed, 43 insertions(+), 38 deletions(-)
 create mode 100644 srcpkgs/acpi_call-dkms/files/dkms.conf
 delete mode 100644 srcpkgs/acpi_call-dkms/patches/linux4.12.patch
 delete mode 100644 srcpkgs/acpi_call-dkms/patches/linux5.6.patch
 create mode 100644 srcpkgs/acpi_call-dkms/patches/null_pointer_exception.patch

diff --git a/srcpkgs/acpi_call-dkms/files/dkms.conf b/srcpkgs/acpi_call-dkms/files/dkms.conf
new file mode 100644
index 000000000000..8ed22df83e87
--- /dev/null
+++ b/srcpkgs/acpi_call-dkms/files/dkms.conf
@@ -0,0 +1,7 @@
+PACKAGE_NAME="acpi_call"
+PACKAGE_VERSION="1.2.1"
+MAKE="KDIR=/lib/modules/${kernelver}/build make"
+CLEAN="make clean"
+BUILT_MODULE_NAME[0]="acpi_call"
+AUTOINSTALL="yes"
+DEST_MODULE_LOCATION[0]="/extra"
diff --git a/srcpkgs/acpi_call-dkms/patches/linux4.12.patch b/srcpkgs/acpi_call-dkms/patches/linux4.12.patch
deleted file mode 100644
index 7164cbe7d553..000000000000
--- a/srcpkgs/acpi_call-dkms/patches/linux4.12.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/acpi_call.c	2017-01-03 17:17:55.000000000 +0000
-+++ b/acpi_call.c	2017-07-15 00:28:28.259960007 +0000
-@@ -7,7 +7,7 @@
- #include <linux/version.h>
- #include <linux/proc_fs.h>
- #include <linux/slab.h>
--#include <asm/uaccess.h>
-+#include <linux/uaccess.h>
- #if LINUX_VERSION_CODE >= KERNEL_VERSION(3, 17, 0)
- #include <linux/acpi.h>
- #else
diff --git a/srcpkgs/acpi_call-dkms/patches/linux5.6.patch b/srcpkgs/acpi_call-dkms/patches/linux5.6.patch
deleted file mode 100644
index 5669234a9a9c..000000000000
--- a/srcpkgs/acpi_call-dkms/patches/linux5.6.patch
+++ /dev/null
@@ -1,21 +0,0 @@
---- a/acpi_call.c	2017-01-03 18:17:55.000000000 +0100
-+++ b/acpi_call.c	2020-03-31 10:35:40.493575868 +0200
-@@ -347,11 +347,18 @@
-     return ret;
- }
- 
-+#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 6, 0)
-+static struct proc_ops proc_acpi_operations = {
-+	.proc_read = acpi_proc_read,
-+	.proc_write = acpi_proc_write,
-+};
-+#else
- static struct file_operations proc_acpi_operations = {
-         .owner    = THIS_MODULE,
-         .read     = acpi_proc_read,
-         .write    = acpi_proc_write,
- };
-+#endif
- 
- #else
- static int acpi_proc_read(char *page, char **start, off_t off,
diff --git a/srcpkgs/acpi_call-dkms/patches/null_pointer_exception.patch b/srcpkgs/acpi_call-dkms/patches/null_pointer_exception.patch
new file mode 100644
index 000000000000..786e639c03ca
--- /dev/null
+++ b/srcpkgs/acpi_call-dkms/patches/null_pointer_exception.patch
@@ -0,0 +1,30 @@
+From 48011f82726c263f49a2b9ca3d9f674bdb4cfd22 Mon Sep 17 00:00:00 2001
+From: Alexander Wetzel <alexander@wetzel-home.de>
+Date: Thu, 8 Jul 2021 16:37:43 +0200
+Subject: [PATCH] Fix for 5.13+ kernels
+
+Upstream commit d4455faccd6c ('proc: mandate ->proc_lseek
+in "struct proc_ops"') made seek support for proc mandatory.
+
+Not providing it will cause a null pointer exception for kernels
+>=5.13.0
+
+Signed-off-by: Alexander Wetzel <alexander@wetzel-home.de>
+---
+ acpi_call.c | 3 +++
+ 1 file changed, 3 insertions(+)
+
+diff --git a/acpi_call.c b/acpi_call.c
+index ebdda25..9fd9886 100644
+--- a/acpi_call.c
++++ b/acpi_call.c
+@@ -369,6 +369,9 @@ static ssize_t acpi_proc_read( struct file *filp, char __user *buff,
+ static struct proc_ops proc_acpi_operations = {
+ 	.proc_read = acpi_proc_read,
+ 	.proc_write = acpi_proc_write,
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 13, 0)
++	.proc_lseek = default_llseek,
++#endif
+ };
+ #else
+ static struct file_operations proc_acpi_operations = {
diff --git a/srcpkgs/acpi_call-dkms/template b/srcpkgs/acpi_call-dkms/template
index 2a24e481538f..f9b09eac8465 100644
--- a/srcpkgs/acpi_call-dkms/template
+++ b/srcpkgs/acpi_call-dkms/template
@@ -1,15 +1,15 @@
 # Template file for 'acpi_call-dkms'
 pkgname=acpi_call-dkms
-version=1.2.0
-revision=3
+version=1.2.1
+revision=1
 archs="i686 x86_64*"
 wrksrc=acpi_call-${version}
 short_desc="Kernel module allowing calls to ACPI methods through /proc/acpi/call"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="GPL-3.0-or-later"
-homepage="https://github.com/damadmai/acpi_call"
-distfiles="$homepage/archive/v$version.tar.gz"
-checksum=c48a0a8768d657a8da7b59d7dbf6276554313fa6a0cb012fa4cf85a77e55f44b
+homepage="https://github.com/nix-community/acpi_call"
+distfiles="${homepage}/archive/refs/tags/v${version}.tar.gz"
+checksum=aa84ac8a209e18ee6de5fa809abd3474fdca67cda3c3256f0650c4fce78d4a0f
 
 dkms_modules="acpi_call ${version}"
 depends="dkms"
@@ -17,7 +17,7 @@ depends="dkms"
 do_install() {
 	vmkdir usr/src/acpi_call-${version}
 	vcopy Makefile usr/src/acpi_call-${version}
-	vcopy dkms.conf usr/src/acpi_call-${version}
+	vcopy ${FILESDIR}/dkms.conf usr/src/acpi_call-${version}
 	vcopy "*.c" usr/src/acpi_call-${version}
 
 	vmkdir usr/share/acpi_call

  parent reply	other threads:[~2021-07-18 10:46 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-17 15:06 [PR PATCH] " dkwo
2021-07-17 20:19 ` ericonr
2021-07-17 20:19 ` ericonr
2021-07-18 10:31 ` dkwo
2021-07-18 10:38 ` dkwo
2021-07-18 10:44 ` [PR PATCH] [Updated] " dkwo
2021-07-18 10:46 ` dkwo [this message]
2021-07-18 10:48 ` dkwo
2021-07-18 10:49 ` dkwo
2021-07-18 21:18 ` ericonr
2021-07-19  7:36 ` [PR PATCH] [Updated] " dkwo
2021-07-19  7:44 ` dkwo
2021-07-19 11:31 ` ericonr
2021-07-19 16:43 ` [PR PATCH] [Updated] " dkwo
2021-07-22 18:52 ` [PR REVIEW] " ericonr
2021-07-22 19:22 ` dkwo
2021-07-22 19:23 ` ericonr
2021-07-22 19:33 ` [PR PATCH] [Updated] " dkwo
2021-07-22 19:34 ` [PR REVIEW] " dkwo
2021-07-23  5:12 ` [PR PATCH] [Merged]: " ericonr

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210718104617.uAqGmp0JS8WTzLVQPPD14A14NMt27ysfXJz_xGqIL_k@z \
    --to=dkwo@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).