search for: mod_timer

Displaying 20 results from an estimated 251 matches for "mod_timer".

2011 Feb 03
0
[PATCH R3 4/7] xen/balloon: Migration from mod_timer() to schedule_delayed_work()
Migration from mod_timer() to schedule_delayed_work(). Signed-off-by: Daniel Kiper <dkiper@net-space.pl> --- drivers/xen/balloon.c | 16 +++------------- 1 files changed, 3 insertions(+), 13 deletions(-) diff --git a/drivers/xen/balloon.c b/drivers/xen/balloon.c index 952cfe2..4223f64 100644 --- a/drivers/xen/ba...
2013 Aug 26
0
[PATCH] bridge: separate querier and query timer into IGMP/IPv4 and MLD/IPv6 ones
...br_multicast_send_query(struct net_bridge *br, br_group.proto = htons(ETH_P_IP); __br_multicast_send_query(br, port, &br_group); + time = jiffies; + time += sent < br->multicast_startup_query_count ? + br->multicast_startup_query_interval : + br->multicast_query_interval; + mod_timer(port ? &port->ip4_multicast_query_timer : + &br->ip4_multicast_query_timer, time); +} + #if IS_ENABLED(CONFIG_IPV6) +static void br_ip6_multicast_send_query(struct net_bridge *br, + struct net_bridge_port *port, u32 sent) +{ + unsigned long time; + struct br_ip br_group; + + i...
2020 Sep 01
4
Filename's in DIBuileder
Try using $PWD/test.cpp on the clang command line. I am seeing the duplicate DIFile entries, but not yet able to reproduce a .debug_line section with multiple directory entries. --paulr From: llvm-dev <llvm-dev-bounces at lists.llvm.org> On Behalf Of Tomar, Sourabh Singh via llvm-dev Sent: Tuesday, September 1, 2020 1:07 PM To: Umesh Kalappa <umesh.kalappa0 at gmail.com>; cfe-dev at
2020 Sep 01
2
Filename's in DIBuileder
Hi All , We have a scenario in our debugger to handle the file index in the debug_ine info like $llvm-dwarfdump -debug-line test.o file_names[ 1]: name: "test.cpp" dir_index: 0 mod_time: 0x00000000 length: 0x00000000 file_names[ 2]: name: "test.cpp" dir_index: 1 mod_time: 0x00000000 length: 0x00000000
2008 Apr 26
2
Erratic / unstable PDC
Greetings all, I have a problem with my Samba server seeming to hang for 10 seconds every 5 minutes or so. Client machines also become sluggish across the entire network during this period. It does not seem to affect file transfers that are in progress. Any ideas would be greatly appreciated. Philip nsc-dell01:/var/log/samba # uname -a Linux nsc-dell01 2.6.18.2-34-default #1 SMP Mon Nov 27
2004 Jun 17
2
[PATCH] (3/4) delay scheduler race with device stopped
...; - long diff; + long diff, delay; PSCHED_GET_TIME(now); diff = q->latency - PSCHED_TDIFF(now, cb->queuetime); @@ -128,13 +128,10 @@ goto retry; } - if (!netif_queue_stopped(sch->dev)) { - long delay = PSCHED_US2JIFFIE(diff); - if (delay <= 0) - delay = 1; - mod_timer(&q->timer, jiffies+delay); - } - + delay = PSCHED_US2JIFFIE(diff); + if (delay <= 0) + delay = 1; + mod_timer(&q->timer, jiffies+delay); sch->flags |= TCQ_F_THROTTLED; } return NULL;
2004 Mar 08
0
Don't get access from Windows Mobile 2003 to Samba 3.0.2a
Hi! I tried accessing a Samba server 3.0.2a from a PDA (Dell Axim X5) with Windows Mobile 2003. In the menu "Open" I typed "\\stormbringer" and and got this error message: Cannot find the file '\\' (or one of its components). Make sure the path and file name are correct and all required libraries are available. Further I tried accessing the same Samba server from a
2007 Apr 18
4
[Bridge] [Patch] [2.6.7] Bridge - Fix BPDU message_age
...->max_age - + (root->message_age_timer.expires - jiffies) + 1; } bpdu.max_age = br->max_age; bpdu.hello_time = br->hello_time; bpdu.forward_delay = br->forward_delay; - br_send_config_bpdu(p, &bpdu); - - p->topology_change_ack = 0; - p->config_pending = 0; - - mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME); + if (bpdu.message_age < br->max_age) { + br_send_config_bpdu(p, &bpdu); + p->topology_change_ack = 0; + p->config_pending = 0; + mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME); + } } /* called under bridge lock */
2002 Oct 21
4
Any work-around for very large number of files yet?
Yes, I've read the FAQ, just hoping for a boon... I'm in the process of relocating a large amount of data from one nfs server to another (Network Appliance filers). The process I've been using is to nfs mount both source and destination to a server (solaris8) and simply use rsync -a /source/ /dest . It works great except for the few that have > 10 million files. On these I get
1998 Apr 08
1
Samba can't resolv password
Hello, I finally switched to the samba-1.9.18p4, and got all my files on this server. But now I have a big problem, all our NT machines can't access the server. They tell wrong user or password. In the debugging mode I see, that the NT machines come to the server and find the right user, then they tell me: lp_file_list_changed() file /usr/local/samba/lib/smb.conf ->
2005 Nov 30
1
problem with windows CE 4.2 and samba 3.0.20
Hi! I replaced a server running RH7.3 and samba 2.2.XX , with a server runnning centos4.2 and samba 3.0.20 . We use several iPAQ handheld that connects to a share on the file server, and then open a file from a network share. In the old server it worked o.k., but now, the same ipaq machines doesnt want to connect to the server. they are able to connect to a windows XP machine, a winnt4 server
1998 Nov 09
0
Password changing on SCO openserver
I have been trying to make password changing work with Samba from a Windows 95 clients. All the workstations use nonencrypted passwords. The server is SCO Open Server, Samba 1.9.18p10. The relevant lines of smb.conf are passwd chat = *Old*password* %o\n "1):" \n *New*password* %n\n *Re-enter*password* %n \n passwd chat debug = yes passwd program = /bin/passwd unix password sync = yes
2013 Oct 28
3
[PATCH net V2] xen-netback: use jiffies_64 value to calculate credit timeout
...vif->credit_timeout.expires = now; + if (time_after_eq64(now, next_credit)) { + vif->credit_window_start = now; tx_add_credit(vif); } @@ -1207,7 +1206,8 @@ static bool tx_credit_exceeded(struct xenvif *vif, unsigned size) vif->credit_timeout.function = tx_credit_callback; mod_timer(&vif->credit_timeout, - next_credit); + (unsigned long)next_credit); + vif->credit_window_start = next_credit; return true; } -- 1.7.10.4
1998 Aug 01
0
smbpasswd and nmbd don't call my password program
I have samba-1.9.18p7-2 smb.conf says: # Configure smbpasswd passwd chat debug = yes # Default passwd chat = *old*password* %o\n *new*password* %n\n *new*password* %n\n *changed* passwd program = /usr/bin/yppasswd Using smbpasswd, my encrypted password is changed, but yppasswd is not even touched (as per ls -lu /usr/bin/yppasswd). Furthermore, running smbd with -d 100 didn't seem to show
2003 Jun 10
3
Samba 3.0 PDC on debian linux
Hi, I try to install my linux as PDC. I followed the samba project documentation and some other doc. My samba is 3.0.0 alpha2.4 My smb.conf is with the user securrity, domain logons etc... Just like it should be I added the computername with the "$" sign Added the computername in smbpasswd but when i try to connect with my win2000 workstation i get "unknown user name or bad
2003 Jan 26
2
Remote machines seen as UNKNOWN
Hello, I have two machines (Samba under Linux, and Win98) that try to connect to another samba machine. They are all two seen as UNKNOWN machines. With the Linux one, I am correctly authenticated, but with the Win98, Connections are rejected. Here is a level 3 log file (It's a bit long, sorry). As you can see, there is an ERRNO = Connection reset by peer Thanks.
2008 Mar 26
1
[kvm-ppc-devel] virtio network traffic issues
Hollis Blanchard wrote: > On Tue, 2008-03-25 at 14:45 +0100, Christian Ehrhardt wrote: >> => from one not yet defined point our guest seems to receive absolutely nothing >> => when the guest is hanging it sends nfs requests which are seen externally, but it does not seem to get the respones >> => the arp requests for the guest are repeated - maybe we can add some very
2008 Mar 26
1
[kvm-ppc-devel] virtio network traffic issues
Hollis Blanchard wrote: > On Tue, 2008-03-25 at 14:45 +0100, Christian Ehrhardt wrote: >> => from one not yet defined point our guest seems to receive absolutely nothing >> => when the guest is hanging it sends nfs requests which are seen externally, but it does not seem to get the respones >> => the arp requests for the guest are repeated - maybe we can add some very
2007 Apr 18
0
[Bridge] [PATCH 2.6] Fix message age in bridge STP config packets
...(root->message_age_timer.expires - jiffies) + + MESSAGE_AGE_INCR; } bpdu.max_age = br->max_age; bpdu.hello_time = br->hello_time; bpdu.forward_delay = br->forward_delay; - br_send_config_bpdu(p, &bpdu); - - p->topology_change_ack = 0; - p->config_pending = 0; - - mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME); + if (bpdu.message_age < br->max_age) { + br_send_config_bpdu(p, &bpdu); + p->topology_change_ack = 0; + p->config_pending = 0; + mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME); + } } /* called under bridge lock */
1999 Nov 22
0
smbd does not run from inetd
Hello, I've a problem with Samba version 2.0.6, where smbd does not start from inetd. nmbd starts from inetd and "smbd -D" works fine as well. And I didn't have that problem with 2.0.4b. The following is an extraction of the smb.log, which shows an "read_socket_data: recv failure for 4. Error = Invalid argument" error. Regarding this problem, what is the difference