Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package vhba-kmp for openSUSE:Factory checked in at 2021-11-27 00:51:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/vhba-kmp (Old) and /work/SRC/openSUSE:Factory/.vhba-kmp.new.1895 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "vhba-kmp" Sat Nov 27 00:51:03 2021 rev:19 rq:933945 version:20211023 Changes: -------- --- /work/SRC/openSUSE:Factory/vhba-kmp/vhba-kmp.changes 2021-04-27 21:34:42.039987591 +0200 +++ /work/SRC/openSUSE:Factory/.vhba-kmp.new.1895/vhba-kmp.changes 2021-11-27 00:51:46.550708538 +0100 @@ -1,0 +2,6 @@ +Thu Nov 25 23:43:30 UTC 2021 - Jan Engelhardt <jeng...@inai.de> + +- Update to release 20211023 + * Support for Linux 5.15 + +------------------------------------------------------------------- Old: ---- vhba-module-20210418.tar.xz New: ---- vhba-module-20211023.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ vhba-kmp.spec ++++++ --- /var/tmp/diff_new_pack.OrJEDY/_old 2021-11-27 00:51:47.042706839 +0100 +++ /var/tmp/diff_new_pack.OrJEDY/_new 2021-11-27 00:51:47.042706839 +0100 @@ -17,7 +17,7 @@ Name: vhba-kmp -Version: 20210418 +Version: 20211023 Release: 0 Summary: Virtual SCSI Host Bus Adapter License: GPL-2.0-or-later ++++++ vhba-module-20210418.tar.xz -> vhba-module-20211023.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/vhba-module-20210418/Makefile new/vhba-module-20211023/Makefile --- old/vhba-module-20210418/Makefile 2021-04-17 13:19:54.000000000 +0200 +++ new/vhba-module-20211023/Makefile 2021-10-23 20:47:30.000000000 +0200 @@ -1,4 +1,4 @@ -VHBA_VERSION := 20210418 +VHBA_VERSION := 20211023 KERNELRELEASE ?= $(shell uname -r) KDIR ?= /lib/modules/$(KERNELRELEASE)/build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/vhba-module-20210418/debian/changelog new/vhba-module-20211023/debian/changelog --- old/vhba-module-20210418/debian/changelog 2021-04-17 13:19:54.000000000 +0200 +++ new/vhba-module-20211023/debian/changelog 2021-10-23 20:47:30.000000000 +0200 @@ -1,3 +1,3 @@ -vhba-module (20210418-1) debian; urgency=low +vhba-module (20211023-1) debian; urgency=low * Initial Release. Closes: #705409 -- Henrik Stokseth <hstok...@users.sourceforge.net> Sat, 05 Apr 2014 12:00:00 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/vhba-module-20210418/vhba.c new/vhba-module-20211023/vhba.c --- old/vhba-module-20210418/vhba.c 2021-04-17 13:19:54.000000000 +0200 +++ new/vhba-module-20211023/vhba.c 2021-10-23 20:47:30.000000000 +0200 @@ -203,7 +203,11 @@ vcmd->cmd = cmd; spin_lock_irqsave(&vdev->cmd_lock, flags); +#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0) + vcmd->metatag = scsi_cmd_to_rq(vcmd->cmd)->tag; +#else vcmd->metatag = vcmd->cmd->request->tag; +#endif list_add_tail(&vcmd->entry, &vdev->cmd_list); spin_unlock_irqrestore(&vdev->cmd_lock, flags); @@ -473,7 +477,11 @@ int retval; unsigned int devnum; +#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0) + scmd_dbg(cmd, "queue %p tag %i\n", cmd, scsi_cmd_to_rq(cmd)->tag); +#else scmd_dbg(cmd, "queue %p tag %i\n", cmd, cmd->request->tag); +#endif devnum = bus_and_id_to_devnum(cmd->device->channel, cmd->device->id); vdev = vhba_lookup_device(devnum);