Your message dated Mon, 25 Apr 2005 04:18:43 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#304916: fixed in schedutils 1.4.0-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)

--------------------------------------
Received: (at submit) by bugs.debian.org; 16 Apr 2005 13:37:56 +0000
>From [EMAIL PROTECTED] Sat Apr 16 06:37:56 2005
Return-path: <[EMAIL PROTECTED]>
Received: from omega.webmasters.gr.jp (webmasters.gr.jp) [218.44.239.78] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DMnUh-0004bw-00; Sat, 16 Apr 2005 06:37:55 -0700
Received: from omega.webmasters.gr.jp (localhost [127.0.0.1])
        by webmasters.gr.jp (Postfix) with ESMTP
        id DC459DEB3B; Sat, 16 Apr 2005 22:37:53 +0900 (JST)
Date: Sat, 16 Apr 2005 22:37:53 +0900
Message-ID: <[EMAIL PROTECTED]>
From: GOTO Masanori <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: [FTBFS] schedutils need to be updated with the recent glibc change
User-Agent: Wanderlust/2.9.9 (Unchained Melody) SEMI/1.14.3 (Ushinoya)
 FLIM/1.14.3 (=?ISO-8859-4?Q?Unebigory=F2mae?=) APEL/10.3 Emacs/21.2
 (i386-debian-linux-gnu) MULE/5.0 (SAKAKI)
MIME-Version: 1.0 (generated by SEMI 1.14.3 - "Ushinoya")
Content-Type: text/plain; charset=US-ASCII
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: schedutils
Version: 1.3.4-1
Severity: serious
Tags: patch, sid, sarge

In the recent up coming glibc-2.3.2.ds1-21, two system call,
sched_setaffinity and sched_getaffinity, are changed.  New interface
needs three argument (OTOH, glibc 2.3.2.ds1-20 has only two
arguments).  The new upstream schedutils 1.4.0 is already released and
it uses new three-argument style system calls.

If you plan to dupload schedutils 1.4.0, you rebuild package with
glibc 2.3.2.ds1-21 and dupload it.  Don't forget to update
Build-Depends: libc6 (>= 2.3.2.ds1-21) in debian/control.  If you plan
to change for the current 1.3.4 and dupload it, please apply my
attached patch, and dupload it.

Regards,
-- gotom

diff -Nuar schedutils-1.3.4/debian/changelog 
schedutils-1.3.4-new/debian/changelog
--- schedutils-1.3.4/debian/changelog   2005-04-16 22:17:01.000000000 +0900
+++ schedutils-1.3.4-new/debian/changelog       2005-04-16 22:12:42.000000000 
+0900
@@ -1,3 +1,9 @@
+schedutils (1.3.4-2) unstable; urgency=low
+
+  * Update for the recent glibc interface change.
+
+ -- GOTO Masanori <[EMAIL PROTECTED]>  Sat, 16 Apr 2005 22:12:09 +0900
+
 schedutils (1.3.4-1) unstable; urgency=low
 
   * New upstream release.
diff -Nuar schedutils-1.3.4/debian/control schedutils-1.3.4-new/debian/control
--- schedutils-1.3.4/debian/control     2005-04-16 22:17:01.000000000 +0900
+++ schedutils-1.3.4-new/debian/control 2005-04-16 22:12:03.000000000 +0900
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Guus Sliepen <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 3.0.0), libc6-dev (>= 2.3) [!ia64 !alpha], 
libc6.1-dev (>= 2.3) [ia64 alpha]
+Build-Depends: debhelper (>> 3.0.0), libc6-dev (>= 2.3.2.ds1-21) [!ia64 
!alpha], libc6.1-dev (>= 2.3.2.ds1-21) [ia64 alpha]
 Standards-Version: 3.6.0
 
 Package: schedutils
diff -Nuar schedutils-1.3.4/taskset.c schedutils-1.3.4-new/taskset.c
--- schedutils-1.3.4/taskset.c  2004-03-24 05:58:03.000000000 +0900
+++ schedutils-1.3.4-new/taskset.c      2005-04-12 09:42:43.000000000 +0900
@@ -130,7 +130,7 @@
        if (pid) {
                unsigned long mask = 0;
 
-               if (sched_getaffinity(pid, &cur_mask) < 0) {
+               if (sched_getaffinity(pid, sizeof (cur_mask), &cur_mask) < 0) {
                        perror("sched_getaffinity");
                        fprintf(stderr, "failed to get pid %d's affinity\n",
                                pid);
@@ -152,13 +152,13 @@
 
        ulong_to_cpu_set(the_mask, &new_mask);
 
-       if (sched_setaffinity(pid, &new_mask)) {
+       if (sched_setaffinity(pid, sizeof (new_mask), &new_mask)) {
                perror("sched_setaffinity");
                fprintf(stderr, "failed to set pid %d's affinity.\n", pid);
                return 1;
        }
 
-       if (sched_getaffinity(pid, &cur_mask) < 0) {
+       if (sched_getaffinity(pid, sizeof (cur_mask), &cur_mask) < 0) {
                perror("sched_setaffinity");
                fprintf(stderr, "failed to get pid %d's affinity.\n", pid);
                return 1;

---------------------------------------
Received: (at 304916-close) by bugs.debian.org; 25 Apr 2005 08:20:24 +0000
>From [EMAIL PROTECTED] Mon Apr 25 01:20:24 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1DPypM-0003AE-00; Mon, 25 Apr 2005 01:20:24 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
        id 1DPynj-0001kP-00; Mon, 25 Apr 2005 04:18:43 -0400
From: Guus Sliepen <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#304916: fixed in schedutils 1.4.0-1
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Mon, 25 Apr 2005 04:18:43 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
        (1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: schedutils
Source-Version: 1.4.0-1

We believe that the bug you reported is fixed in the latest version of
schedutils, which is due to be installed in the Debian FTP archive:

schedutils_1.4.0-1.diff.gz
  to pool/main/s/schedutils/schedutils_1.4.0-1.diff.gz
schedutils_1.4.0-1.dsc
  to pool/main/s/schedutils/schedutils_1.4.0-1.dsc
schedutils_1.4.0-1_i386.deb
  to pool/main/s/schedutils/schedutils_1.4.0-1_i386.deb
schedutils_1.4.0.orig.tar.gz
  to pool/main/s/schedutils/schedutils_1.4.0.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.
Guus Sliepen <[EMAIL PROTECTED]> (supplier of updated schedutils 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: Mon, 25 Apr 2005 10:00:33 +0200
Source: schedutils
Binary: schedutils
Architecture: source i386
Version: 1.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Guus Sliepen <[EMAIL PROTECTED]>
Changed-By: Guus Sliepen <[EMAIL PROTECTED]>
Description: 
 schedutils - Linux scheduler utilities
Closes: 304916
Changes: 
 schedutils (1.4.0-1) unstable; urgency=low
 .
   * New upstream release. Closes: #304916
Files: 
 ea14abc007490d657e91f0efe19efad3 657 utils optional schedutils_1.4.0-1.dsc
 7df848af0bfaf75842494a4d2abf4767 17134 utils optional 
schedutils_1.4.0.orig.tar.gz
 f0472ea204477a8c908ab1d3bf8b78ac 2537 utils optional schedutils_1.4.0-1.diff.gz
 af69310fc99adb675f8cc1d8a2f5aa55 15926 utils optional 
schedutils_1.4.0-1_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)

iD8DBQFCbKQeAxLow12M2nsRAmawAJsHT4A8iGiO8HjQTPHvxCF+8EuhDwCgrFFQ
bekzjysVLBKDSwCy8yMiu3I=
=r6gv
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to