Your message dated Sun, 04 Nov 2007 13:02:02 +0000
with message-id <[EMAIL PROTECTED]>
and subject line Bug#449241: fixed in drbd8 2:8.0.7-1
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: drbd8-module-source
Version: 2:8.0.4-1
Severity: normal
| /usr/src/modules/drbd/drbd/drbd_int.h: At top level:
| /usr/src/modules/drbd/drbd/drbd_int.h:1279: warning: ‘request_queue_t’ is
deprecated
| /usr/src/modules/drbd/drbd/drbd_int.h:1281: warning: ‘request_queue_t’ is
deprecated
| /usr/src/modules/drbd/drbd/drbd_int.h:1909: warning: ‘request_queue_t’ is
deprecated
| /usr/src/modules/drbd/drbd/drbd_main.c:1915: warning: ‘request_queue_t’ is
deprecated
| /usr/src/modules/drbd/drbd/drbd_main.c: In function ‘drbd_create_mempools’:
| /usr/src/modules/drbd/drbd/drbd_main.c:2154: error: too many arguments to
function ‘kmem_cache_create’
| /usr/src/modules/drbd/drbd/drbd_main.c:2160: error: too many arguments to
function ‘kmem_cache_create’
| /usr/src/modules/drbd/drbd/drbd_main.c: In function ‘drbd_cleanup’:
| /usr/src/modules/drbd/drbd/drbd_main.c:2223: warning: ‘request_queue_t’ is
deprecated
| /usr/src/modules/drbd/drbd/drbd_main.c:2297: error: void value not ignored as
it ought to be
| /usr/src/modules/drbd/drbd/drbd_main.c: In function ‘drbd_new_device’:
| /usr/src/modules/drbd/drbd/drbd_main.c:2307: warning: ‘request_queue_t’ is
deprecated
| make[4]: *** [/usr/src/modules/drbd/drbd/drbd_main.o] Error 1
A patch which fixes the issue is attached.
regards,
-mika-
--- a/drbd/drbd/drbd_main.c 2007-06-25 16:47:37.000000000 +0200
+++ b/drbd/drbd/drbd_main.c 2007-11-04 13:21:53.000000000 +0100
@@ -2149,15 +2149,27 @@
drbd_pp_pool = NULL;
// caches
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
drbd_request_cache = kmem_cache_create(
"drbd_req_cache", sizeof(drbd_request_t),
0, 0, NULL, NULL);
+#else
+ drbd_request_cache = kmem_cache_create(
+ "drbd_req_cache", sizeof(drbd_request_t),
+ 0, 0, NULL);
+#endif
if (drbd_request_cache == NULL)
goto Enomem;
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
drbd_ee_cache = kmem_cache_create(
"drbd_ee_cache", sizeof(struct Tl_epoch_entry),
0, 0, NULL, NULL);
+#else
+ drbd_ee_cache = kmem_cache_create(
+ "drbd_ee_cache", sizeof(struct Tl_epoch_entry),
+ 0, 0, NULL);
+#endif
if (drbd_ee_cache == NULL)
goto Enomem;
@@ -2294,8 +2306,12 @@
kfree(minor_table);
+#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
if (unregister_blkdev(MAJOR_NR, DEVICE_NAME) != 0)
printk(KERN_ERR DEVICE_NAME": unregister of device failed\n");
+#else
+ unregister_blkdev(MAJOR_NR, DEVICE_NAME);
+#endif
printk(KERN_INFO DEVICE_NAME": module cleanup done.\n");
}
--- End Message ---
--- Begin Message ---
Source: drbd8
Source-Version: 2:8.0.7-1
We believe that the bug you reported is fixed in the latest version of
drbd8, which is due to be installed in the Debian FTP archive:
drbd8-source_8.0.7-1_all.deb
to pool/main/d/drbd8/drbd8-source_8.0.7-1_all.deb
drbd8-utils_8.0.7-1_amd64.deb
to pool/main/d/drbd8/drbd8-utils_8.0.7-1_amd64.deb
drbd8_8.0.7-1.diff.gz
to pool/main/d/drbd8/drbd8_8.0.7-1.diff.gz
drbd8_8.0.7-1.dsc
to pool/main/d/drbd8/drbd8_8.0.7-1.dsc
drbd8_8.0.7.orig.tar.gz
to pool/main/d/drbd8/drbd8_8.0.7.orig.tar.gz
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Philipp Hug <[EMAIL PROTECTED]> (supplier of updated drbd8 package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sun, 04 Nov 2007 13:46:53 +0100
Source: drbd8
Binary: drbd8-utils drbd8-source
Architecture: source amd64 all
Version: 2:8.0.7-1
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors <[EMAIL PROTECTED]>
Changed-By: Philipp Hug <[EMAIL PROTECTED]>
Description:
drbd8-source - RAID 1 over tcp/ip for Linux module source
drbd8-utils - RAID 1 over tcp/ip for Linux utilities
Closes: 448876 449241
Changes:
drbd8 (2:8.0.7-1) unstable; urgency=low
.
* New upstream release (Closes: #449241)
* Integrated NMU changes (Closes: #448876)
Files:
fe1e5fc2136795ebf0b4aeb528ef0c1a 675 admin extra drbd8_8.0.7-1.dsc
923bd04a0ab76ef899d119d4561d078a 492060 admin extra drbd8_8.0.7.orig.tar.gz
35aebbf39f67b1cafa37371d2e60d359 11991 admin extra drbd8_8.0.7-1.diff.gz
615b82941c352b1a20404a0d8334c9ce 135606 admin extra
drbd8-utils_8.0.7-1_amd64.deb
ff4f3bae26058605b8846093cf631f16 138046 admin extra
drbd8-source_8.0.7-1_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFHLcCQaZN+myf86ycRAos6AJ9bAwf6UJ3NdVbHl+jD8qy27pPcUgCgk+Oj
I9Db3OL4N9JnMqZTp396afE=
=61gB
-----END PGP SIGNATURE-----
--- End Message ---