Hello community,

here is the log from the commit of package iscsitarget for openSUSE:Factory 
checked in at 2014-01-22 09:41:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/iscsitarget (Old)
 and      /work/SRC/openSUSE:Factory/.iscsitarget.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "iscsitarget"

Changes:
--------
--- /work/SRC/openSUSE:Factory/iscsitarget/iscsitarget.changes  2013-07-17 
09:25:56.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.iscsitarget.new/iscsitarget.changes     
2014-01-23 15:45:37.000000000 +0100
@@ -1,0 +2,9 @@
+Tue Jan 21 09:48:03 UTC 2014 - norm...@linux.vnet.ibm.com
+
+- driver modified to match the kernel code change of ipc_pinfo structure
+  as per following link (linux 3.13-rc7):
+https://www.kernel.org/diff/diffview.cgi?file=%2Fpub%2Flinux%2Fkernel%2Fv3.x%2Ftesting%2Fpatch-3.13-rc7.xz;z=7956
+
+- added patches:
+  * iscsitarget-no_more_daddr_in_ipc_pinfo.patch
+-------------------------------------------------------------------

New:
----
  iscsitarget-no_more_daddr_in_ipc_pinfo.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ iscsitarget.spec ++++++
--- /var/tmp/diff_new_pack.xqsN8y/_old  2014-01-23 15:45:38.000000000 +0100
+++ /var/tmp/diff_new_pack.xqsN8y/_new  2014-01-23 15:45:38.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package iscsitarget
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -37,6 +37,7 @@
 Patch2:         iscsitarget-kernel-3.6.0.patch
 Patch3:         iscsitarget-kernel-3.7.patch
 Patch4:         iscsitarget-kernel-3.9.patch
+Patch5:         iscsitarget-no_more_daddr_in_ipc_pinfo.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %suse_kernel_module_package -n %{name} -p %{S:3} kdump um
 
@@ -66,6 +67,9 @@
 %if 0%{?suse_version} > 1230
 %patch4
 %endif
+%if 0%{?suse_version} > 1310
+%patch5 -p1
+%endif
 %endif
 echo "iscsi_trgt.ko yes" > kernel/Module.supported
 

++++++ iscsitarget-no_more_daddr_in_ipc_pinfo.patch ++++++
Subject: iscsitarget no more daddr in ipc_pinfo
From: Michel Normand <norm...@linux.vnet.ibm.com>

The variables "daddr" and "rcv_saddr"  in the ipc_pinfo structure are no longer
available. They got removed in linux 3.13 kernel. You can view the changes
to the above structure in the mainstream kernel at the following link
(linux 3.13-rc7):
https://www.kernel.org/diff/diffview.cgi?file=%2Fpub%2Flinux%2Fkernel%2Fv3.x%2Ftesting%2Fpatch-3.13-rc7.xz;z=7956

patch rcvd from thad...@br.ibm.com

Signed-off-by: Michel Normand <norm...@linux.vnet.ibm.com>
---
 kernel/conn.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: iscsitarget-1.4.20.3-svn/kernel/conn.c
===================================================================
--- iscsitarget-1.4.20.3-svn.orig/kernel/conn.c
+++ iscsitarget-1.4.20.3-svn/kernel/conn.c
@@ -48,7 +48,7 @@ void conn_info_show(struct seq_file *seq
                        break;
                case AF_INET6:
                        snprintf(buf, sizeof(buf), "[%pI6]",
-                                &inet6_sk(sk)->daddr);
+                                &(sk)->sk_v6_daddr);
                        break;
                default:
                        break;
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to