On Saturday 02 of February 2008, you wrote:
> This is the start of the stable review cycle for the 2.6.22.17 release.
> There are 27 patches in this series, all will be posted as a response to
> this one.  If anyone has any issues with these being applied, please let
> us know.  If anyone is a maintainer of the proper subsystem, and wants
> to add a Signed-off-by: line to the patch, please respond with it.

btw. does this program hang for anyone on 2.6.22 (process in D state) ?

#include <stdio.h>
#include <sched.h>
 
int main( void )
{
        cpu_set_t cpu;
        int cpus = 0;
        int ret;
        ret = sched_getaffinity(getpid(), sizeof(cpu), &cpu);
        printf( "cpus = %d, ret = %d\n", cpu, ret );
        sched_setaffinity(getpid(), sizeof(cpu), &cpu);
        printf( "ret = %d\n" );
        return ret;
}


-- 
Arkadiusz Miśkiewicz        PLD/Linux Team
arekm / maven.pl            http://ftp.pld-linux.org/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to