search for: mod_inc_use_count

Displaying 7 results from an estimated 7 matches for "mod_inc_use_count".

2004 Jun 23
2
problems compiling zaptel X100P on Redhat Fedora 2.6.5-1.358
.../zaptel.c: In function `zt_chan_write': /asterisk/zaptel-0.9.1/zaptel.c:1665: warning: ignoring return value of `direct_copy_from_user', declared with attribute warn_unused_result /asterisk/zaptel-0.9.1/zaptel.c: In function `zt_ctl_open': /asterisk/zaptel-0.9.1/zaptel.c:1694: warning: `MOD_INC_USE_COUNT' is deprecated (declared at include/linux/module.h:501) /asterisk/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...
2004 Jan 15
1
Problem at compiling zaptel
...accordingly." /usr/include/linux/version.h:38:2: #error "=======================================================" In file included from zaptel.c:82: zaptel.h:1375:41: missing binary operator before token "(" zaptel.c: In function `zt_ctl_open': zaptel.c:1681: warning: `MOD_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_COU...
2004 Jan 15
1
Problem at compiling zaptel (again)
...accordingly." /usr/include/linux/version.h:38:2: #error "=======================================================" In file included from zaptel.c:82: zaptel.h:1375:41: missing binary operator before token "(" zaptel.c: In function `zt_ctl_open': zaptel.c:1681: warning: `MOD_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_COU...
2005 Jul 11
4
Zaptel won't compile under Fedora Core 4
...In function 'zt_chan_write': /asterisk_source/zaptel/zaptel.c:1737: warning: ignoring return value of 'copy_from_user', declared with attribute warn_unused_result /asterisk_source/zaptel/zaptel.c: In function 'zt_ctl_open': /asterisk_source/zaptel/zaptel.c:1766: error: 'MOD_INC_USE_COUNT' undeclared (first use in this function) /asterisk_source/zaptel/zaptel.c:1766: error: (Each undeclared identifier is reported only once /asterisk_source/zaptel/zaptel.c:1766: error: for each function it appears in.) /asterisk_source/zaptel/zaptel.c: In function 'zt_chan_open': /aste...
2004 Mar 12
0
for testing/examiniation: updated esfq patch for 2.6.4
...riz.org.uk/jdg-qos-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-...
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).