From gjelinek@sac.sfbay.sun.com Mon Jul 13 13:10:58 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6DKAvYp002276
	for <psarc-ext@sac.sfbay.sun.com>; Mon, 13 Jul 2009 13:10:58 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n6DKAgUj002272;
	Mon, 13 Jul 2009 21:10:56 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KMQ00801LE6VY00@nwk-avmta-2.sfbay.sun.com>; Mon,
 13 Jul 2009 13:10:54 -0700 (PDT)
Received: from dm-sfbay-01.sfbay.sun.com ([129.145.155.118])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KMQ004HLLE6HX50@nwk-avmta-2.sfbay.sun.com>; Mon,
 13 Jul 2009 13:10:54 -0700 (PDT)
Received: from sac.sfbay.sun.com (sac.SFBay.Sun.COM [129.146.226.132])
	by dm-sfbay-01.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2)
 with ESMTP id n6DKAqbi017545; Mon, 13 Jul 2009 13:10:52 -0700 (PDT)
Received: from sac.sfbay.sun.com (localhost [127.0.0.1])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6DKApIo002271; Mon,
 13 Jul 2009 13:10:51 -0700 (PDT)
Received: (from gjelinek@localhost)
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8/Submit) id n6DKApST002267; Mon,
 13 Jul 2009 13:10:51 -0700 (PDT)
Date: Mon, 13 Jul 2009 13:10:51 -0700 (PDT)
From: Gerald Jelinek <gjelinek@sac.sfbay.sun.com>
Subject: prctl usage output [PSARC/2009/392 FastTrack timeout 07/20/2009]
To: PSARC-ext@sun.com
Cc: Menno.Lageman@sun.com, gerald.jelinek@sun.com
Message-id: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
Status: RO
Content-Length: 3790

I'm sponsoring this fast-track for Menno Lageman.

Thanks,
Jerry

Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
This information is Copyright 2009 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 prctl usage output
    1.2. Name of Document Author/Supplier:
	 Author:  Menno Lageman
    1.3  Date of This Document:
	13 July, 2009
4. Technical Description
   Summary

   This case proposes to enhance the output format of prctl(1M) defined by
   PSARC 2004/183[1] to include the current resource usage.  Patch binding
   is requested.

   Description

   The prctl(1M) utility currently displays the configured resource limits
   for resource controls but does not offer the administrator a simple way
   to observe the current usage of a resource control.  The resource control
   subsystem provides an optional callback mechanism for resource controls
   to export their current usage.  This callback is invoked by getrctl(2) when
   passed the RCTL_USAGE flag.

   This case will modify prctl(1M)[2] to retrieve the current resource usage
   using getrctl(2) and display the usage on a separate line if resource
   usage is available for that resource control:

   # prctl -i zone global
   zone: 0: global
   NAME    PRIVILEGE       VALUE    FLAG   ACTION               RECIPIENT
   zone.max-swap
           usage            469MB   
           system          16.0EB    max   deny                         -
   zone.max-locked-memory
           usage               0B   
           system          16.0EB    max   deny                         -
   zone.max-shm-memory
           system          16.0EB    max   deny                         -
   zone.max-shm-ids
           system          16.8M     max   deny                         -
   zone.max-sem-ids
           system          16.8M     max   deny                         -
   zone.max-msg-ids
           system          16.8M     max   deny                         -
   zone.max-lwps
           usage             282    
           system          2.15G     max   deny                         -
   zone.cpu-cap
           usage               0   
           system          4.29G     inf   deny                         -
   zone.cpu-shares
           usage               1    
           privileged          1       -   none                         -
           system          65.5K     max   none                         -

   The parseable ouput emitted by the -P option will be changed to include
   an additional line for the usage (if available for the resource control):

   # prctl -P -i zone global
   zone: 0: global
   zone.max-swap usage 491675648 - - -
   zone.max-swap system 18446744073709551615 max deny -
   zone.max-locked-memory usage 0 - - -
   zone.max-locked-memory system 18446744073709551615 max deny -
   zone.max-shm-memory system 18446744073709551615 max deny -
   zone.max-shm-ids system 16777216 max deny -
   zone.max-sem-ids system 16777216 max deny -
   zone.max-msg-ids system 16777216 max deny -
   zone.max-lwps usage 284 - - -
   zone.max-lwps system 2147483647 max deny -
   zone.cpu-cap usage 0 - - -
   zone.cpu-cap system 4294967295 inf deny -
   zone.cpu-shares usage 1 - - -
   zone.cpu-shares privileged 1 - none -
   zone.cpu-shares system 65535 max none -

   Interface Stability

   Human-readable output	Uncommitted
   Parseable output		Committed

   References

   [1] PSARC 2004/183 Resource control and projects enhancements
   [2] 6855557 prctl(1M) should show resource control usage
       http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6855557



6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		on
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open


From Richard.Matthews@sun.com Wed Jul 22 09:42:33 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6MGgWb4008166
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 22 Jul 2009 09:42:32 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n6MGgS3a054486
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Wed, 22 Jul 2009 10:42:32 -0600 (MDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KN600601ZQWKF00@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@Sun.COM); Wed, 22 Jul 2009 09:42:32 -0700 (PDT)
Received: from brmea-mail-1.sun.com ([192.18.98.31])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KN60044BZQVMP10@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@Sun.COM); Wed,
 22 Jul 2009 09:42:31 -0700 (PDT)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n6MGgV51020466	for
 <PSARC-ext@Sun.COM>; Wed, 22 Jul 2009 16:42:31 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KN600400VKNC100@mail-amer.sun.com> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Wed, 22 Jul 2009 10:42:31 -0600 (MDT)
Received: from [129.152.9.14] ([unknown] [129.152.9.14])
 by mail-amer.sun.com (Sun Java(tm) System Messaging Server 7u2-7.02 64bit
 (built Apr 16 2009)) with ESMTPSA id <0KN6008ZYZQG5O50@mail-amer.sun.com>; Wed,
 22 Jul 2009 10:42:17 -0600 (MDT)
Date: Wed, 22 Jul 2009 11:42:16 -0500
From: Rick Matthews <Richard.Matthews@sun.com>
Subject: Re: prctl usage output [PSARC/2009/392 FastTrack timeout 07/20/2009]
In-reply-to: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
Sender: Richard.Matthews@sun.com
To: Gerald Jelinek <gjelinek@sac.sfbay.sun.com>
Cc: PSARC-ext@sun.com, Menno.Lageman@sun.com, Gerald.Jelinek@sun.com
Reply-to: Richard.Matthews@sun.com
Message-id: <4A674168.80907@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
User-Agent: Thunderbird 2.0.0.19 (X11/20090110)
Status: RO
Content-Length: 1129

+1

On 07/13/09 03:10 PM, Gerald Jelinek wrote:
> I'm sponsoring this fast-track for Menno Lageman.
>
> Thanks,
> Jerry
>
> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
> This information is Copyright 2009 Sun Microsystems
> 1. Introduction
>     1.1. Project/Component Working Name:
> 	 prctl usage output
>     1.2. Name of Document Author/Supplier:
> 	 Author:  Menno Lageman
>     1.3  Date of This Document:
> 	13 July, 2009
> 4. Technical Description
>    Summary
>
>    This case proposes to enhance the output format of prctl(1M) defined by
>    PSARC 2004/183[1] to include the current resource usage.  Patch binding
>    is requested.
>
>   

-- 
---------------------------------------------------------------------
Rick Matthews                           email: Rick.Matthews@sun.com
Sun Microsystems, Inc.                  phone:+1(651) 554-1518
1270 Eagan Industrial Road              phone(internal): 54418
Suite 160                               fax:  +1(651) 554-1540
Eagan, MN 55121-1231 USA                main: +1(651) 554-1500		
---------------------------------------------------------------------


From gdamore@sun.com Wed Jul 22 09:49:30 2009
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk.SFBay.Sun.COM [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6MGnUV4008813
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 22 Jul 2009 09:49:30 -0700 (PDT)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail3mpk.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n6MGnTLr016766
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Wed, 22 Jul 2009 09:49:30 -0700 (PDT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KN70070L02HV700@nwk-avmta-1.sfbay.Sun.COM> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 22 Jul 2009 09:49:29 -0700 (PDT)
Received: from sca-es-mail-1.sun.com ([192.18.43.132])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KN7004YT02HMP10@nwk-avmta-1.sfbay.Sun.COM> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 22 Jul 2009 09:49:29 -0700 (PDT)
Received: from fe-sfbay-09.sun.com ([192.18.43.129])
	by sca-es-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id n6MGnTpB021096	for
 <PSARC-ext@sun.com>; Wed, 22 Jul 2009 09:49:29 -0700 (PDT)
Received: from conversion-daemon.fe-sfbay-09.sun.com by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KN600700ZMGKU00@fe-sfbay-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 22 Jul 2009 09:49:29 -0700 (PDT)
Received: from [192.168.251.11] ([unknown] [76.93.15.33])
 by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 with ESMTPSA id <0KN700HM502GSK00@fe-sfbay-09.sun.com>; Wed,
 22 Jul 2009 09:49:29 -0700 (PDT)
Date: Wed, 22 Jul 2009 09:49:28 -0700
From: "Garrett D'Amore" <gdamore@sun.com>
Subject: Re: prctl usage output [PSARC/2009/392 FastTrack timeout 07/20/2009]
In-reply-to: <4A674168.80907@Sun.COM>
Sender: Garrett.Damore@sun.com
To: Richard.Matthews@sun.com
Cc: Gerald Jelinek <gjelinek@sac.sfbay.sun.com>, PSARC-ext@sun.com,
        Menno.Lageman@sun.com, Gerald.Jelinek@sun.com
Message-id: <4A674318.9020302@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
 <4A674168.80907@Sun.COM>
User-Agent: Thunderbird 2.0.0.18 (X11/20081201)
Status: RO
Content-Length: 1030

Rick Matthews wrote:
> +1

Btw, the old parseable output was "Evolving" (at least that's what the 
man page says), this raises it to Committed.

I'd have preferred to see the parseable format use some kind of 
name-value pairs, to make it easier to extend in the future.

Nonetheless, I'll give it my +1 as well.

    - Garrett
>
> On 07/13/09 03:10 PM, Gerald Jelinek wrote:
>> I'm sponsoring this fast-track for Menno Lageman.
>>
>> Thanks,
>> Jerry
>>
>> Template Version: @(#)sac_nextcase 1.68 02/23/09 SMI
>> This information is Copyright 2009 Sun Microsystems
>> 1. Introduction
>>     1.1. Project/Component Working Name:
>>      prctl usage output
>>     1.2. Name of Document Author/Supplier:
>>      Author:  Menno Lageman
>>     1.3  Date of This Document:
>>     13 July, 2009
>> 4. Technical Description
>>    Summary
>>
>>    This case proposes to enhance the output format of prctl(1M) 
>> defined by
>>    PSARC 2004/183[1] to include the current resource usage.  Patch 
>> binding
>>    is requested.
>>
>>   
>


From Gerald.Jelinek@sun.com Fri Jul 24 10:17:23 2009
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6OHHMZP001829
	for <psarc-ext@sac.sfbay.sun.com>; Fri, 24 Jul 2009 10:17:22 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id n6OHHJWG020486
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Fri, 24 Jul 2009 18:17:21 +0100 (BST)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KNA00K1HQOWXR00@nwk-avmta-2.sfbay.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@Sun.COM); Fri, 24 Jul 2009 10:17:20 -0700 (PDT)
Received: from brmea-mail-1.sun.com ([192.18.98.31])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KNA0092MQOVBMF0@nwk-avmta-2.sfbay.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@Sun.COM); Fri,
 24 Jul 2009 10:17:20 -0700 (PDT)
Received: from fe-amer-09.sun.com ([192.18.109.79])
	by brmea-mail-1.sun.com (8.13.6+Sun/8.12.9) with ESMTP id n6OHHJNf026535	for
 <PSARC-ext@Sun.COM>; Fri, 24 Jul 2009 17:17:19 +0000 (GMT)
Received: from conversion-daemon.mail-amer.sun.com by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KNA00D00PXPHX00@mail-amer.sun.com> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Fri, 24 Jul 2009 11:17:19 -0600 (MDT)
Received: from [129.146.226.83] ([unknown] [129.146.226.83])
 by mail-amer.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 with ESMTPSA id <0KNA00MD7QORHPG0@mail-amer.sun.com> for PSARC-ext@Sun.COM
 (ORCPT PSARC-ext@Sun.COM); Fri, 24 Jul 2009 11:17:15 -0600 (MDT)
Date: Fri, 24 Jul 2009 11:17:11 -0600
From: Jerry Jelinek <Gerald.Jelinek@sun.com>
Subject: Re: prctl usage output [PSARC/2009/392 FastTrack timeout 07/20/2009]
In-reply-to: <4A674318.9020302@sun.com>
Sender: Gerald.Jelinek@sun.com
To: PSARC-ext@sun.com
Cc: Menno.Lageman@sun.com
Message-id: <4A69EC97.70905@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
 <4A674168.80907@Sun.COM> <4A674318.9020302@sun.com>
User-Agent: Thunderbird 2.0.0.21 (X11/20090623)
Status: RO
Content-Length: 93

This case has timed out with no objections.
I have marked it closed approved.

Thanks,
Jerry

From gdamore@sun.com Fri Jul 24 10:42:11 2009
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id n6OHgA0Q002229
	for <psarc-ext@sac.sfbay.sun.com>; Fri, 24 Jul 2009 10:42:11 -0700 (PDT)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id n6OHg6vo048980
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Fri, 24 Jul 2009 11:42:10 -0600 (MDT)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0KNA00M07RU8MH00@nwk-avmta-2.sfbay.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Fri, 24 Jul 2009 10:42:08 -0700 (PDT)
Received: from sca-es-mail-1.sun.com ([192.18.43.132])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0KNA00L5ERU71120@nwk-avmta-2.sfbay.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Fri,
 24 Jul 2009 10:42:07 -0700 (PDT)
Received: from fe-sfbay-09.sun.com ([192.18.43.129])
	by sca-es-mail-1.sun.com (8.13.7+Sun/8.12.9) with ESMTP id n6OHg7GO015571	for
 <PSARC-ext@sun.com>; Fri, 24 Jul 2009 10:42:07 -0700 (PDT)
Received: from conversion-daemon.fe-sfbay-09.sun.com by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 id <0KNA00400RNZVV00@fe-sfbay-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Fri, 24 Jul 2009 10:42:07 -0700 (PDT)
Received: from [192.168.251.11] ([unknown] [76.93.15.33])
 by fe-sfbay-09.sun.com
 (Sun Java(tm) System Messaging Server 7u2-7.02 64bit (built Apr 16 2009))
 with ESMTPSA id <0KNA00GN6RU68050@fe-sfbay-09.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Fri, 24 Jul 2009 10:42:07 -0700 (PDT)
Date: Fri, 24 Jul 2009 10:42:06 -0700
From: "Garrett D'Amore" <gdamore@sun.com>
Subject: Re: prctl usage output [PSARC/2009/392 FastTrack timeout 07/20/2009]
In-reply-to: <4A69EC97.70905@sun.com>
Sender: Garrett.Damore@sun.com
To: Jerry Jelinek <Gerald.Jelinek@sun.com>
Cc: PSARC-ext@sun.com, Menno.Lageman@sun.com
Message-id: <4A69F26E.3020800@sun.com>
MIME-version: 1.0
Content-type: text/plain; CHARSET=US-ASCII; format=flowed
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.4.1.325704
References: <200907132010.n6DKApST002267@sac.sfbay.sun.com>
 <4A674168.80907@Sun.COM> <4A674318.9020302@sun.com> <4A69EC97.70905@sun.com>
User-Agent: Thunderbird 2.0.0.18 (X11/20081201)
Status: RO
Content-Length: 402

Jerry Jelinek wrote:
> This case has timed out with no objections.
> I have marked it closed approved.
>
> Thanks,
> Jerry
Actually it was approved at PSARC on Wed.  It also received the 
necessary +1 required for a fast track.

(It is possible for a timer to run out without a +1, in which case the 
case would *not* be approved.  Fortunately that is not what happened in 
this case.)

    - Garrett


