Github messages for voidlinux
 help / color / mirror / Atom feed
From: mvf <mvf@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] bbswitch: fix build with kernel 5.6+
Date: Tue, 21 Jul 2020 08:26:12 +0200	[thread overview]
Message-ID: <20200721062612.osnXTRbAOyDIgbJTp8EP-tBrEiErCFSoxhXVm8FOr8U@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-23681@inbox.vuxu.org>

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

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

https://github.com/mvf/void-packages pr/bbswitch
https://github.com/void-linux/void-packages/pull/23681

bbswitch: fix build with kernel 5.6+
Been running this for a few months on 5.6.8. Also build-tested against 5.7.9.

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

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

From fac6c168dd1d161d7f7362eb954a7d8706d90ce1 Mon Sep 17 00:00:00 2001
From: Matthias von Faber <mvf@gmx.eu>
Date: Mon, 20 Apr 2020 18:09:01 +0200
Subject: [PATCH] bbswitch: fix build with kernel 5.6+

---
 srcpkgs/bbswitch/patches/kernel-5.6.0.patch | 55 +++++++++++++++++++++
 srcpkgs/bbswitch/template                   |  8 +--
 2 files changed, 59 insertions(+), 4 deletions(-)
 create mode 100644 srcpkgs/bbswitch/patches/kernel-5.6.0.patch

diff --git a/srcpkgs/bbswitch/patches/kernel-5.6.0.patch b/srcpkgs/bbswitch/patches/kernel-5.6.0.patch
new file mode 100644
index 00000000000..e88f1cad634
--- /dev/null
+++ b/srcpkgs/bbswitch/patches/kernel-5.6.0.patch
@@ -0,0 +1,55 @@
+From 4dbde5385f9c77155cc1ca57ce83bf64f9af2c4a Mon Sep 17 00:00:00 2001
+From: Mateusz Mandera <mateusz.mandera@protonmail.com>
+Date: Tue, 31 Mar 2020 15:11:30 +0200
+Subject: [PATCH] Use proc_ops structure for kernel version >= 5.6.0
+
+Since 5.6.0, proc_create requires a proc_ops* argument
+instead of file_operations*.
+Commit with the migrationin the kernel source can be found at
+https://github.com/torvalds/linux/commit/d56c0d45f0e27f814e87a1676b6bdccccbc252e9
+---
+ bbswitch.c | 14 ++++++++++++++
+ 1 file changed, 14 insertions(+)
+
+diff --git bbswitch.c bbswitch.c
+index 228d722..bbe50d0 100644
+--- bbswitch.c
++++ bbswitch.c
+@@ -35,6 +35,10 @@
+ #include <linux/suspend.h>
+ #include <linux/seq_file.h>
+ #include <linux/pm_runtime.h>
++#include <linux/version.h>
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++#include <linux/proc_fs.h>
++#endif
+ 
+ #define BBSWITCH_VERSION "0.8"
+ 
+@@ -375,6 +379,15 @@ static int bbswitch_pm_handler(struct notifier_block *nbp,
+     return 0;
+ }
+ 
++#if LINUX_VERSION_CODE >= KERNEL_VERSION(5,6,0)
++static struct proc_ops bbswitch_fops = {
++    .proc_open   = bbswitch_proc_open,
++    .proc_read   = seq_read,
++    .proc_write  = bbswitch_proc_write,
++    .proc_lseek = seq_lseek,
++    .proc_release= single_release
++};
++#else
+ static struct file_operations bbswitch_fops = {
+     .open   = bbswitch_proc_open,
+     .read   = seq_read,
+@@ -382,6 +395,7 @@ static struct file_operations bbswitch_fops = {
+     .llseek = seq_lseek,
+     .release= single_release
+ };
++#endif
+ 
+ static struct notifier_block nb = {
+     .notifier_call = &bbswitch_pm_handler
+-- 
+2.26.1
+
diff --git a/srcpkgs/bbswitch/template b/srcpkgs/bbswitch/template
index 41e627f7406..56d003aaeaa 100644
--- a/srcpkgs/bbswitch/template
+++ b/srcpkgs/bbswitch/template
@@ -1,18 +1,18 @@
 # Template file for 'bbswitch'
 pkgname=bbswitch
 version=0.8
-revision=2
+revision=3
+archs="i686 x86_64"
 hostmakedepends="git"
 makedepends="dkms"
 depends="dkms"
-dkms_modules="${pkgname} ${version}"
-short_desc="kernel module allowing to switch dedicated graphics card on Optimus laptops"
+short_desc="Kernel module for disabling the nVidia GPU on Optimus laptops"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2"
 homepage="http://github.com/Bumblebee-Project/bbswitch"
-archs="i686 x86_64"
 distfiles="https://github.com/Bumblebee-Project/bbswitch/archive/v$version.tar.gz"
 checksum=76cabd3f734fb4fe6ebfe3ec9814138d0d6f47d47238521ecbd6a986b60d1477
+dkms_modules="${pkgname} ${version}"
 
 do_install() {
 	vinstall Makefile 644 usr/src/${pkgname}-${version}

  reply	other threads:[~2020-07-21  6:26 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-07-21  4:28 [PR PATCH] " mvf
2020-07-21  6:26 ` mvf [this message]
2020-07-21  6:31 ` [PR PATCH] [Updated] " mvf
2020-08-16 13:03 ` [PR REVIEW] " Piraty
2020-08-17 18:25 ` [PR PATCH] [Updated] " mvf
2020-08-17 18:34 ` [PR REVIEW] " mvf
2020-08-19 16:12 ` Piraty
2020-09-29  2:16 ` ericonr
2020-09-30 19:24 ` [PR PATCH] [Closed]: " Piraty

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=20200721062612.osnXTRbAOyDIgbJTp8EP-tBrEiErCFSoxhXVm8FOr8U@z \
    --to=mvf@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).