[linux-dvb] Re: artefacts in picture - where can I find the module options? 2nd try

2004-07-10 Thread Jon Burgess
Rene Bartsch wrote: I'm having artefacts in the picture (VDR). The HDD (SATA) performs with 58 MB/s, so I assume it's related to the PCI-bus (on an i865PE board). My setup has an i865G running with 4 x Nova-T PCI cards and I don't see any problems so I suspect the PCI bus is not the cause.

[linux-dvb] Is anyone taking care of DVB net?

2004-07-10 Thread Ady Deac
Hi there! I dont know if this is the place where I should ask for help regarding a hint for using a B2C2 Skystar2 dvb board for data transfer/internet. I tried to use it with 2.6.5, 2.6.6, 2.6.7 and also with the drivers from CVS; the pc is hanging when trying to spawn more than one intreface

[linux-dvb] Re: Vdr video data stream broken

2004-07-10 Thread Andreas Share
Andreas Share wrote: Hmm, my skystar2 rev 2.6c/stv0299 dies within 2-3h, but my nova (like budget-ci) and my ff rev 1.5 sometimes run for ~12h... i have seen the skystar2 irq_handler calls dvb_dmx_swfilter_packets() more often than the other cards if (adapter-capturing != 0) {

[linux-dvb] Re: Vdr video data stream broken

2004-07-10 Thread Jon Burgess
Andreas Share wrote: Hi, I have around 1600-1800 interrupts per second, with the ss2 as secondary device during epgscan. OK, That is not excessive - an idle 2.6 machine has 1000 from the timer interrupt alone. One other thing: The Dbox2 related Tuxbox Project share the Api3 and the most of

[linux-dvb] Re: Vdr video data stream broken

2004-07-10 Thread Andreas Share
- Original Message - From: Jon Burgess [EMAIL PROTECTED] To: Andreas Share [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Saturday, July 10, 2004 10:26 PM Subject: [linux-dvb] Re: Vdr video data stream broken Andreas Share wrote: Hi, I have around 1600-1800 interrupts per second,

[linux-dvb] Re: Is anyone taking care of DVB net?

2004-07-10 Thread Steffen Barszus
On Saturday 10 July 2004 19:18, Ady Deac wrote: Hi there! I dont know if this is the place where I should ask for help regarding a hint for using a B2C2 Skystar2 dvb board for data transfer/internet. I tried to use it with 2.6.5, 2.6.6, 2.6.7 and also with the drivers from CVS; the pc is

[linux-dvb] Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread C.Y.M.
After updating the dvb-kernel from yesterday, I am unable to unload the stv0299 module from my 2.6.7-bk20 kernel. dvb_ttpci 312588 18 saa7146_vv 50432 1 dvb_ttpci video_buf 22020 1 saa7146_vv saa714619044 2 dvb_ttpci,saa7146_vv

[linux-dvb] Re: Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread Kenneth Aafløy
On Sunday 11 July 2004 00:32, C.Y.M. wrote: After updating the dvb-kernel from yesterday, I am unable to unload the stv0299 module from my 2.6.7-bk20 kernel. I added code that locks the frontend module when it attaches to a card driver yesterday, offcourse this should be the other way around.

[linux-dvb] [PATCH] Frontend module ref count on open.

2004-07-10 Thread Kenneth Aafløy
Hi, I've attached a patch which fixes the problem where a program has the frontend device open, and the frontend module is removed. I've only fixed the frontends which already has been converted to the kernel i2c layer, as the rest will be forced to provide the dvb-core with module info when

[linux-dvb] Re: Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread Kenneth Aafløy
On Sunday 11 July 2004 04:58, C.Y.M. wrote: I just checked in a fix for this, so that it ups the card drivers module ref count when a frontend attaches, and not the frontend module ref count as this was really the problem I was seeing. Now I have the same problem unloading the modules,

[linux-dvb] Re: [PATCH] unbalanced semaphore usage in dvb_frontend_thread

2004-07-10 Thread Christopher Pascoe
Forgot the patch, here it is.. Regards ChrisIndex: linux/drivers/media/dvb/dvb-core/dvb_frontend.c === RCS file: /cvs/linuxtv/dvb-kernel/linux/drivers/media/dvb/dvb-core/dvb_frontend.c,v retrieving revision 1.80 diff -u -p -r1.80

[linux-dvb] Re: Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread C.Y.M.
Won't the dvb-ttpci module be released when you unload the frontend module? It does that here.. Yes, sorry. I was trying to remove the driver before the frontend. I just changed the order of removal in my shutdown script and its working fine now. Thank you for everything and such a fast

[linux-dvb] Re: Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread Kenneth Aafløy
On Sunday 11 July 2004 05:36, C.Y.M. wrote: Won't the dvb-ttpci module be released when you unload the frontend module? It does that here.. Yes, sorry. I was trying to remove the driver before the frontend. I just changed the order of removal in my shutdown script and its working fine

[linux-dvb] Re: Unable to rmmod stv0299 as of yesterday

2004-07-10 Thread C.Y.M.
I belive my first commit was correct, except for the fact that I missed the that I had placed the module_put call below a return statement, doh. I don't dare commit more errors, so I'm just going to wait untill Michael or any of the other gurus can confirm this. Also the patch I