Hello community, here is the log from the commit of package iscsitarget checked in at Thu Jul 31 02:10:01 CEST 2008. -------- --- iscsitarget/iscsitarget.changes 2007-11-27 18:57:42.000000000 +0100 +++ /mounts/work_src_done/STABLE/iscsitarget/iscsitarget.changes 2008-07-30 17:23:37.385012000 +0200 @@ -1,0 +2,5 @@ +Wed Jul 30 17:23:22 CEST 2008 - ro@suse.de + +- grab patch from svn to make it build with current kernel + +------------------------------------------------------------------- New: ---- svn-diff-154-155.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ iscsitarget.spec ++++++ --- /var/tmp/diff_new_pack.b14558/_old 2008-07-31 02:09:53.000000000 +0200 +++ /var/tmp/diff_new_pack.b14558/_new 2008-07-31 02:09:53.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package iscsitarget (Version 0.4.15) # -# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany. # This file and all modifications and additions to the pristine # package are under the same license as the package itself. # @@ -10,6 +10,7 @@ # norootforbuild + Name: iscsitarget BuildRequires: kernel-source kernel-syms module-init-tools openssl-devel Url: http://iscsitarget.sourceforge.net @@ -18,7 +19,7 @@ PreReq: %fillup_prereq %insserv_prereq /bin/cat /bin/rm AutoReqProv: on Version: 0.4.15 -Release: 11 +Release: 70 Requires: kernel Summary: Open Source iSCSI Target with Professional Features Source: %{name}-%{version}.tar.gz @@ -27,6 +28,7 @@ Patch1: %{name}-%{version}-netlink.diff Patch2: %{name}-%{version}-kmem_cache_create.diff Patch3: iscsitarget-2.6.24.diff +Patch4: svn-diff-154-155.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %suse_kernel_module_package -n %{name} -p %_sourcedir/preamble kdump um @@ -64,6 +66,7 @@ %patch1 -p1 %patch2 -p1 %patch3 +%patch4 %build %{__make} CFLAGS="${RPM_OPT_FLAGS} -I../include" bindir=/usr/sbin usr @@ -111,37 +114,39 @@ %doc %{_mandir}/man8/* %changelog -* Tue Nov 27 2007 - ro@suse.de +* Wed Jul 30 2008 ro@suse.de +- grab patch from svn to make it build with current kernel +* Tue Nov 27 2007 ro@suse.de - marked kmp preamble as source file -* Tue Nov 27 2007 - ro@suse.de +* Tue Nov 27 2007 ro@suse.de - make it build with 2.6.24 -* Tue Oct 23 2007 - ro@suse.de +* Tue Oct 23 2007 ro@suse.de - add KMP subpackage to transport metadata for kmp subpacks -* Sat Oct 20 2007 - jeffm@suse.com +* Sat Oct 20 2007 jeffm@suse.com - Update to 0.4.15 - Improved error reporting with fileio_sync() - Rewritten iSNS code with many fixes - Fix bug in READ_* commands error handling - Fix mode sense response. - Added building of KMP to spec file. -* Wed May 31 2006 - hare@suse.de +* Wed May 31 2006 hare@suse.de - Pull in fixes from upstream to prevent kernel oops [#179557] -* Mon May 22 2006 - hare@suse.de +* Mon May 22 2006 hare@suse.de - Set mode for /etc/ietd.conf to 600 [#177081] -* Thu May 18 2006 - kukuk@suse.de +* Thu May 18 2006 kukuk@suse.de - Fix return code of init script [#176186] -* Wed Jan 25 2006 - mls@suse.de +* Wed Jan 25 2006 mls@suse.de - converted neededforbuild to BuildRequires -* Fri Jan 13 2006 - hare@suse.de +* Fri Jan 13 2006 hare@suse.de - Update to official version 0.4.13 -* Thu Nov 03 2005 - hare@suse.de +* Thu Nov 03 2005 hare@suse.de - Update to svn r1262, version 0.4.13 -* Sun Sep 11 2005 - aj@suse.de +* Sun Sep 11 2005 aj@suse.de - Correct rciscsitarget link. - Do not depend on kernel-source and kernel-syms since those are not needed. -* Wed Sep 07 2005 - hare@suse.de +* Wed Sep 07 2005 hare@suse.de - Update to svn r1247 - Fix init script (#114386) -* Wed Jul 06 2005 - hare@suse.de +* Wed Jul 06 2005 hare@suse.de - Initial version 0.4.11 ++++++ svn-diff-154-155.patch ++++++ Index: kernel/block-io.c =================================================================== --- kernel/block-io.c (revision 154) +++ kernel/block-io.c (revision 155) @@ -9,8 +9,9 @@ * This code is licenced under the GPL. */ +#include <linux/types.h> +#include <linux/blkdev.h> #include <linux/parser.h> -#include <linux/blkdev.h> #include <linux/buffer_head.h> #include "iscsi.h" Index: kernel/volume.c =================================================================== --- kernel/volume.c (revision 154) +++ kernel/volume.c (revision 155) @@ -4,12 +4,13 @@ * This code is licenced under the GPL. */ +#include <linux/types.h> +#include <linux/parser.h> + #include "iscsi.h" #include "iscsi_dbg.h" #include "iotype.h" -#include <linux/parser.h> - struct iet_volume *volume_lookup(struct iscsi_target *target, u32 lun) { struct iet_volume *volume; Index: kernel/null-io.c =================================================================== --- kernel/null-io.c (revision 154) +++ kernel/null-io.c (revision 155) @@ -7,9 +7,10 @@ * data. It is only for performance measurement purpose. */ +#include <linux/types.h> #include <linux/blkdev.h> +#include <linux/parser.h> #include <linux/writeback.h> -#include <linux/parser.h> #include "iscsi.h" #include "iscsi_dbg.h" Index: kernel/file-io.c =================================================================== --- kernel/file-io.c (revision 154) +++ kernel/file-io.c (revision 155) @@ -4,9 +4,10 @@ * This code is licenced under the GPL. */ +#include <linux/types.h> #include <linux/blkdev.h> +#include <linux/parser.h> #include <linux/writeback.h> -#include <linux/parser.h> #include "iscsi.h" #include "iscsi_dbg.h" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... --------------------------------------------------------------------- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org
participants (1)
-
root@Hilbert.suse.de