lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Fri, 27 Oct 2006 07:26:28 +0000
From:	Mike Galbraith <efault@....de>
To:	Indian Mogul <indian_mogul@...oo.com>
Cc:	linux-kernel@...r.kernel.org
Subject: Re: CPU Loading

On Thu, 2006-10-26 at 22:37 -0700, Indian Mogul wrote:

> How can I load the CPU such that the scheduling time
> slice is insuffucent for mplayer to playout the video?
> To the mplayer the system thus appears "slow" ?

:) unusual request.

The proglet below, which someone posted a while back, should meet your
needs nicely.  Fire up a few copies in the background with args like
5000 6000 7000 8000 9000.., and mplayer should become decidedly unhappy.

The scheduler round robin schedules tasks which it has classified as
interactive (tasks which sleep somewhat regularly basically) at a higher
rate than their timeslice to reduce latency, but the more tasks
circulating at the same priority (or above) as mplayer, the bigger the
latency hit mplayer will take.

	-Mike

#include <stdlib.h>
#include <unistd.h>

static void burn_cpu(unsigned int x)
{
	static char buf[1024];
	int i;
	
	for (i=0; i < x; ++i)
		buf[i%sizeof(buf)] = (x-i)*3;
}

int main(int argc, char **argv)
{
	unsigned long burn;
	if (argc != 2)
		return 1;
	burn = (unsigned long)atoi(argv[1]);
	while(1) {
		burn_cpu(burn*1000);
		usleep(1);
	}
	return 0;
}


-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ