search for: mod_time

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

Did you mean: 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/b...
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; + +...
2020 Sep 01
4
Filename's in DIBuileder
...g++ -std=c++14 -g test.cpp -c -S -emit-llvm -o - | awk /DIFile/ !3 = !DIFile(filename: "test.cpp", directory: "/home/") $ clang++ -std=c++14 -g test.cpp -c -o - | llvm-dwarfdump -debug-line - [...] file_names[ 1]: name: "test.cpp" dir_index: 0 mod_time: 0x00000000 length: 0x00000000 [...] Did I missed something, while reproducing ? ? --Sourabh From: llvm-dev <llvm-dev-bounces at lists.llvm.org<mailto:llvm-dev-bounces at lists.llvm.org>> On Behalf Of Umesh Kalappa via llvm-dev Sent: Tuesday, September 1, 2020 9:50 PM To: LL...
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 Address Line Column File ISA Discriminator Flags ------------------ ------ ------ ------ --- ------------- ------...
2008 Apr 26
2
Erratic / unstable PDC
...lenge(70) challenge is: [2008/04/26 17:21:27, 5] lib/util.c:dump_data(2264) [000] 15 29 B8 90 81 62 F1 6B .)...b.k [2008/04/26 17:21:37, 6] param/loadparm.c:lp_file_list_changed(3077) lp_file_list_changed() file /etc/samba/dhcp.conf -> /etc/samba/dhcp.conf last mod_time: Thu Jan 1 02:00:00 1970 file /etc/samba/smb.conf -> /etc/samba/smb.conf last mod_time: Sat Apr 26 17:20:54 2008 (/var/log/samba/nsc-dell01) [2008/04/26 17:21:27, 5] auth/auth_util.c:debug_nt_user_token(448) NT user token: (NULL) [2008/04/26 17:21:27, 5] auth/auth_util.c:debug_unix_user_...
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
...h = /Freigabe browsable = yes read only = no ----------------------------------------------- And this is the Logfile: [2004/03/08 12:22:49, 6] param/loadparm.c:lp_file_list_changed(2653) lp_file_list_changed() file /usr/local/samba/lib/smb.conf -> /usr/local/samba/lib/smb.conf last mod_time: Mon Mar 8 12:01:34 2004 [2004/03/08 12:22:49, 3] smbd/oplock.c:init_oplocks(1226) open_oplock_ipc: opening loopback UDP socket. [2004/03/08 12:22:49, 10] lib/util_sock.c:open_socket_in(675) bind succeeded on port 0 [2004/03/08 12:22:49, 3] smbd/oplock.c:init_oplocks(1257) open_oplock ipc...
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
...l 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 -> /usr/local/samba/lib/smb.conf last mod_time: Wed Apr 8 16:51:09 1998 04/08/1998 16:54:48 init msg_type=0x81 msg_flags=0x0 write_socket(5,4) write_socket(5,4) wrote 4 got smb length of 170 got message type 0x0 of len 0xaa 04/08/1998 16:54:48 Transaction 1 of length 174 size=170 smb_com=0x72 smb_rcls=0 smb_reh=0 smb_err=0 smb_flg=24 smb_flg2...
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
...Panel/Passwords/Change other passwords/Windows networking it doesn't allow me to. Going through the Samba logs I find nothing related to password changing. This is what goes into the log file: lp_file_list_changed() file /usr/local/samba/lib/smb.conf -> /usr/local/samba/lib/smb.conf last mod_time: Wed Nov 4 19:16:12 1998 1998/11/04 19:18:14 init msg_type=0x81 msg_flags=0x0 write_socket(5,4) write_socket(5,4) wrote 4 got smb length of 154 got message type 0x0 of len 0x9a 1998/11/04 19:18:14 Transaction 1 of length 158 size=154 smb_com=0x72 smb_rcls=0 smb_reh=0 smb_err=0 smb_flg=0 smb_flg2=...
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
...mbd binary, just to make sure? Thanks for any help, Marc Trying sysv shmem open of size 102400 shm_initialize : initializing shmem size 102400 shm_alloc : allocated 112 bytes at offset 48 Initialised IPC area of size 102400 lp_file_list_changed() file /etc/smb.conf -> /etc/smb.conf last mod_time: Fri Jul 31 15:51:13 1998 1998/07/31 16:24:28 changed root to / open_oplock_ipc: opening loopback UDP socket. bind succeeded on port 0 open_oplock ipc: pid = 2499, oplock_port = 1438 priming nmbd sending a packet of len 1 to (127.0.0.1) on port 137 of type DGRAM Serverzone is 25200 ==&gt...
2003 Jun 10
3
Samba 3.0 PDC on debian linux
...root logon (tried others also). And how can i list the users from smbpasswd ??? These are the loggings: Log.10.51.10.159 [2003/06/10 11:46:18, 6] param/loadparm.c:lp_file_list_changed(2621) lp_file_list_changed() file /usr/local/samba/lib/smb.conf -> /usr/local/samba/lib/smb.conf last mod_time: Fri Jun 6 15:43:25 2003 [2003/06/10 11:46:18, 3] smbd/oplock.c:init_oplocks(1214) open_oplock_ipc: opening loopback UDP socket. [2003/06/10 11:46:18, 3] smbd/oplock_linux.c:linux_init_kernel_oplocks(302) Linux kernel oplocks enabled [2003/06/10 11:46:18, 3] smbd/oplock.c:init_oplocks(1245)...
2003 Jan 26
2
Remote machines seen as UNKNOWN
...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. [2003/01/26 18:37:54, 6] param/loadparm.c:lp_file_list_changed(2213) lp_file_list_changed() file /etc/samba/smb.tourcd.conf -> /etc/samba/smb.tourcd.conf last mod_time: Sun Oct 6 14:25:52 2002 file /etc/samba/smb.conf.%a -> /etc/samba/smb.conf.UNKNOWN last mod_time: Thu Jan 1 01:00:00 1970 file /etc/samba/smb.conf.UNKNOWN modified: Sun Oct 6 14:25:52 2002 [2003/01/26 18:37:54, 5] param/loadparm.c:free_service(1773) free_service: Freeing serv...
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
...from inetd. thanks for your help Juergen [smb.log -d 20 ] ---------------------------------------------------------------------------- [1999/11/22 10:00:23, 6] param/loadparm.c:lp_file_list_changed(1855) lp_file_list_changed() file /var/samba/lib/smb.conf -> /var/samba/lib/smb.conf last mod_time: Mon Nov 22 09:34:39 1999 [1999/11/22 10:00:23, 2] lib/interface.c:add_interface(83) added interface ip=204.105.215.16 bcast=204.105.215.255 nmask=255.255.255.0 [1999/11/22 10:00:23, 1] smbd/files.c:file_init(216) file_init: Information only: requested 10000 open files, 1014 are available. [19...