Re: [proaudio] : Compile a 2.6.25.4-rt5 kernel (was : 2.6.24.7-rt7 - Big performance improvement) |
[ Thread Index |
Date Index
| More lists.tuxfamily.org/proaudio Archives
]
- To: proaudio@xxxxxxxxxxxxxxxxxxx
- Subject: Re: [proaudio] : Compile a 2.6.25.4-rt5 kernel (was : 2.6.24.7-rt7 - Big performance improvement)
- From: Reuben Martin <reuben.m@xxxxxxxxx>
- Date: Sun, 8 Jun 2008 20:46:34 -0500
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:reply-to:to:subject:date :user-agent:references:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:message-id; bh=wzqatYR2VQKv6oX3MHhybK+B5uaNifCsYk3f/S5IhLs=; b=NUwYKHqCBCnnsXGkO7H8Cx5JNF/tEVpkrm/7JvUipCZwlozYZ88++iDiaZSrPf0JCp 99NSugJ59NdDJlGaloKY4aOtq3AHPTQqo+0R/g/9hsiunYATT2jiFGv/ipsrXBHPBy3Q TM3h0d1tKR4e0t5Cga+kBOl7cFbnv2JkhQAtQ=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:reply-to:to:subject:date:user-agent:references:in-reply-to :mime-version:content-type:content-transfer-encoding :content-disposition:message-id; b=TFCL7zjnSiHsTg67LOvYvpR1MnXH5a0BEGUdQ7TlOdX1KI4UHjmL4p8bfBTXCYoMDq OS7QB5CoHsNfOwUDkGEbUXDj9ZinIuvR/KQeRkYyb4dygmN5VmrsYTDi3pMhs4sQJfVS SdQmOnFTLCZB1Qiy4Kk3XlQasfCi1JWA9FdaY=
Back on Friday 06 June 2008, Mysth-R was like:
> Hi,
>
> Well, I don't know how to check the IRQ-Thread...
>
> I just set the rtirq script for my firewire card :
>[...]
>
> Can you tell me more about setting the priority level of IRQ-thread please
> ? Cheers,
>
Hi,
ps -elH
will give a listing of all processes and their priority settings. The chrt
tool will also allow you to change scheduling priority as well as your
scheduling policy.
Find the process ID of the IRQ thread used by your sound card from the
previous command, and try using something like:
chrt -f -p 80 [process ID of the IRQ thread]
(and remember that the number scale listed by the ps command and the chrt
command when referring to priority levels are not the same. You are setting
the priority level of IRQ thread to "80" in chrt, and should show up in ps
as -21)
Another helpful tool you might want to insall is htop.
-Reuben
> Mysth-R