Displaying 10 results from an estimated 10 matches for "mod_dec_use_count".
2004 Jun 23
2
problems compiling zaptel X100P on Redhat Fedora 2.6.5-1.358
...isk/zaptel-0.9.1/zaptel.c: In function
`zt_chan_open':
/asterisk/zaptel-0.9.1/zaptel.c:1703: warning:
`MOD_INC_USE_COUNT' is deprecated (declared at
include/linux/module.h:501)
/asterisk/zaptel-0.9.1/zaptel.c: In function
`zt_ctl_release':
/asterisk/zaptel-0.9.1/zaptel.c:1712: warning:
`MOD_DEC_USE_COUNT' is deprecated (declared at
include/linux/module.h:513)
/asterisk/zaptel-0.9.1/zaptel.c: In function
`zt_chan_release':
/asterisk/zaptel-0.9.1/zaptel.c:1721: warning:
`MOD_DEC_USE_COUNT' is deprecated (declared at
include/linux/module.h:513)
/asterisk/zaptel-0.9.1/zaptel.c: In function...
2004 Jan 15
1
Problem at compiling zaptel
...D_INC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:481)
zaptel.c: In function `zt_chan_open':
zaptel.c:1688: warning: `MOD_INC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:481)
zaptel.c: In function `zt_ctl_release':
zaptel.c:1695: warning: `MOD_DEC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:493)
zaptel.c: In function `zt_chan_release':
zaptel.c:1702: warning: `MOD_DEC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:493)
zaptel.c: In function `zt_timing_open':
zaptel.c:2003: warning: `MOD_INC_USE_...
2004 Jan 15
1
Problem at compiling zaptel (again)
...D_INC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:481)
zaptel.c: In function `zt_chan_open':
zaptel.c:1688: warning: `MOD_INC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:481)
zaptel.c: In function `zt_ctl_release':
zaptel.c:1695: warning: `MOD_DEC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:493)
zaptel.c: In function `zt_chan_release':
zaptel.c:1702: warning: `MOD_DEC_USE_COUNT' is deprecated (declared at
/usr/include/linux/module.h:493)
zaptel.c: In function `zt_timing_open':
zaptel.c:2003: warning: `MOD_INC_USE_...
2005 Jul 11
4
Zaptel won't compile under Fedora Core 4
...k_source/zaptel/zaptel.c: In function 'zt_chan_open':
/asterisk_source/zaptel/zaptel.c:1775: error: 'MOD_INC_USE_COUNT' undeclared
(first use in this function)
/asterisk_source/zaptel/zaptel.c: In function 'zt_ctl_release':
/asterisk_source/zaptel/zaptel.c:1784: error: 'MOD_DEC_USE_COUNT' undeclared
(first use in this function)
/asterisk_source/zaptel/zaptel.c: In function 'zt_chan_release':
/asterisk_source/zaptel/zaptel.c:1793: error: 'MOD_DEC_USE_COUNT' undeclared
(first use in this function)
/asterisk_source/zaptel/zaptel.c: In function 'zt_timing_open...
2004 Apr 21
4
Resetting network device / skb leak
hi,
I seem to have a problem with the Linux xen-network driver leaking skbs.
This is probably my own fault, upon resumption after migration I call
this:
void network_resume(void)
{
struct net_device* dev = __dev_get_by_name("eth0");
MOD_DEC_USE_COUNT;
network_open(dev);
}
-- which works fine. However, in network_open() the call to
NETOP_RESET_RINGS seems to clear all the pointers to the old skbs, and
network_alloc_rx_buffers() allocs a bunch of new ones. It suppose that
means I have just leaked a whole bunch of skbs. I know the standard
s...
2004 Mar 12
0
for testing/examiniation: updated esfq patch for 2.6.4
...-script/
2. I don''t know anything about IMQ, so I extracted the parts that relate
to esfq and madified the patch to apply cleanly to 2.6.4. The
resulting file is esfq-2.6.patch.old, which seems to work but is
marked unsafe upon insmod due to use of deprecated
MOD_INC_USE_COUNT/MOD_DEC_USE_COUNT.
3. There have been several updates to sfq since esfq was forked,
viewable at:
http://linux.bkbits.net:8080/linux-2.5/hist/net/sched/sch_sfq.c?nav=index.html|src/|src/net|src/net/sched
I did my best to apply revisions 1.5 - 1.13 to the esfq patch, and
the result is esfq-2.6.patch. I made...
2000 Dec 08
2
ext3-0.0.5c released
Hi all,
ext3-0.0.5c is now up at:
ftp.uk.linux.org:/pub/linux/sct/fs/jfs/
and ftp.*.kernel.org:/pub/linux/kernel/people/sct/ext3/
The most important part of this release is the e2fsprogs: e2fsck now
supports the journal changes for metadata-only journaling.
Ted, I've changed around the use of jfs* include files in e2fsprogs
quite heavily here. In each build directory --- the lib/ext2fs
2002 Jun 08
2
New qdisc path, try it (what is the problem)
hello,
this is my new qdisc patch, when i recompile the
kernel with this patch i dn''nt succeed please look at
it and if there are any mistakes plesease send me a
mail
thanks in advance
___________________________________________________________
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français !
Yahoo! Mail : http://fr.mail.yahoo.com
2004 Mar 18
6
[PATCH] packet delay scheduler
Okay, here is a very simple QOS scheduler that delays packets for 2.6.
It is good for testing, and might be useful for people who want to put
some class of traffic into a "penalty box".
Alexey''s tc command is really easy to extend to new disciplines. There is
a version which knows about this scheduler at:
http://developer.osdl.org/shemminger/tcp/iproute2-delay.tar.bz2
The
2004 Jul 01
20
[PATCH 2.6] update to network emulation QOS scheduler
This patch updates the network emulation packet scheduler.
* name changed from delay to netem since it does more than just delay
* Catalin''s merged code to do packet reordering
* uses a socket queue''s directly rather than layering on qdisc(fifo)
because this is used in performance tests.
* adds placeholder in API for future enhancements (rate and duplicate).