search for: reenter

Displaying 20 results from an estimated 146 matches for "reenter".

2002 Aug 12
2
AIX authenticate()
...--- cut -------------------- % diff -u auth-passwd.c-original auth-passwd.c --- auth-passwd.c-original 2002-08-12 18:43:25.000000000 +0200 +++ auth-passwd.c 2002-08-12 19:02:43.000000000 +0200 @@ -114,6 +114,7 @@ #ifdef WITH_AIXAUTHENTICATE char *authmsg; char *loginmsg; + int rc; int reenter = 1; #endif @@ -145,7 +146,11 @@ } #endif #ifdef WITH_AIXAUTHENTICATE - return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); + while (reenter) { + rc = authenticate (pw->pw_name,password,&reenter,&authmsg) + } + return (rc); #endif #ifdef KRB4 if (o...
2001 Feb 22
1
Problem with OpenSSH 2.3.0p1/2.5.1p1 and AIX
We have come across a problem with OpenSSH 2.3.0p1 (and still in 2.5.1p1) which affect authentication on an AIX 4.3 system. The code in auth-passwd.c at line 168 reads: #ifdef WITH_AIXAUTHENTICATE return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); #endif however, the AIX manual page for "authenticate" states: "The authenticate subroutine maintains requirements users must satisfy to be authenticated to the system. It is a recallable interface that prompts for the user's name and password. The user mu...
2017 Feb 13
3
[PATCH 2/2] x86/vdso: Add VCLOCK_HVCLOCK vDSO clock read method
...nvolved they might provide the required ordering already. But I can't tell > as I have no idea how that host side thing is done. > > tglx IMO Hyper-V TSC page clocksource here seems pretty similar to KVM's pvclock, So I would guess "the structure is only updated just before reentering the guest after some VM event" (https://rwmj.wordpress.com/2010/10/15/kvm-pvclock/), that is, the update should happen on the same CPU, I guess. Thanks, -- Dexuan
2017 Feb 13
3
[PATCH 2/2] x86/vdso: Add VCLOCK_HVCLOCK vDSO clock read method
...nvolved they might provide the required ordering already. But I can't tell > as I have no idea how that host side thing is done. > > tglx IMO Hyper-V TSC page clocksource here seems pretty similar to KVM's pvclock, So I would guess "the structure is only updated just before reentering the guest after some VM event" (https://rwmj.wordpress.com/2010/10/15/kvm-pvclock/), that is, the update should happen on the same CPU, I guess. Thanks, -- Dexuan
2010 Sep 07
3
Losing first DTMF digit (with ASR)
I'm having a wierd problem. Somewhere around 1-2% of the time, the first DTMF digit dialed gets dropped. This is occurring during a SpeechBackground application call. If the caller reenters the digits when given a second chance, all is OK. Any suggestions how to debug this intermittent problem?
2001 May 17
0
Fwd: ext3 for 2.4
...t merging. Much more work needs to go into benchmarking and performance tuning. - There's an issue with page_launder(): ext3_file_write() -> generic_file_write() -> __alloc_pages() -> page_launder() -> ext3_writepage() This is bad. It will cause ext3 to be reentered while it has a transaction open against a different fs. This will corrupt filesystems and can deadlock. Making ext3_file_write() set PF_MEMALLOC wasn't suitable. It easily causes 0-order allocation failures within generic_file_write(). The current approach to this is, in ext3_wr...
2002 Sep 10
3
XP woes
...in the logs when joining the domain with a machine which later gave the above error message: [2002/09/10 6:07:11, 0] rpc_server/srv_samr.c:api_samr_set_userinfo(672) api_samr_set_userinfo: Unable to unmarshall SAMR_Q_SET_USERINFO. I've left and rejoined the domain, I've deleted and reentered the computer's name in smbpasswd, I've renamed the computer, I've changed the computers SID, every time I get the same thing. Last week this machine worked just dandy. Does the above "unmarshall" error mean anything to anyone?
2005 Oct 12
2
Ip route cache problem
...g inside the cache I find only the route to reach the dns server, but not the one that the dns needs to reach my server: 151.99.0.100 from 192.168.1.2 via 81.77.88.100 dev eth2 src 192.168.1.249 cache <src-direct> mtu 1500 advmss 1460 metric10 64 iif eth0 I experieced in the past that reentering the iptables nat command worked, but it seems a random effect and not always works. Thank''s in advance, Luca Maragnani
2009 Apr 23
2
Asterisk on Mac OS X
...e and unsubscribe their phone number from our call center list. So, basically, when they call in, they would be greeted with a message something like: "please enter your 10 digit phone number followed by the pound sign". They would then have the number read back to them to confirm it or reenter it. Once confirmed, it would write the phone number to a text file for importing into MySQL or FileMaker. Is what I am trying to accomplish within the realm of what Asterisk can do on the Mac platform... or any platform... and if so, how difficult of an install is it? I have read varying account...
2008 Oct 02
0
Comments for squeue.c; part 2.
...non-interrupt context, wouldn''t it be more straightforward to pass ''interrupt'' flag instead of the time to squeue_drain? 10. 698 sqp->sq_run = NULL; This was already done in line 650. 11. 703 * We let a thread processing a squeue reenter only 704 * once. This helps the case of incoming connection 705 * where a SYN-ACK-ACK that triggers the conn_ind 706 * doesn''t have to queue the packet if listener and 707 * eager are on the same squeue. Also helps the...
2018 Jul 02
2
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
...Makita wrote: >> Under heavy load vhost busypoll may run without suppressing >> notification. For example tx zerocopy callback can push tx work while >> handle_tx() is running, then busyloop exits due to vhost_has_work() >> condition and enables notification but immediately reenters handle_tx() >> because the pushed work was tx. In this case handle_tx() tries to >> disable notification again, but when using event_idx it by design >> cannot. Then busyloop will run without suppressing notification. >> Another example is the case where handle_tx() tries t...
2018 Jul 02
2
[PATCH vhost] vhost_net: Fix too many vring kick on busypoll
...Makita wrote: >> Under heavy load vhost busypoll may run without suppressing >> notification. For example tx zerocopy callback can push tx work while >> handle_tx() is running, then busyloop exits due to vhost_has_work() >> condition and enables notification but immediately reenters handle_tx() >> because the pushed work was tx. In this case handle_tx() tries to >> disable notification again, but when using event_idx it by design >> cannot. Then busyloop will run without suppressing notification. >> Another example is the case where handle_tx() tries t...
2015 Oct 09
2
[PATCH 2/2] kvm/x86: Hyper-V kvm exit
On 09/10/2015 15:39, Denis V. Lunev wrote: > From: Andrey Smetanin <asmetanin at virtuozzo.com> > > A new vcpu exit is introduced to notify the userspace of the > changes in Hyper-V synic configuraion triggered by guest writing to the > corresponding MSRs. > > Signed-off-by: Andrey Smetanin <asmetanin at virtuozzo.com> > Reviewed-by: Roman Kagan <rkagan at
2015 Oct 09
2
[PATCH 2/2] kvm/x86: Hyper-V kvm exit
On 09/10/2015 15:39, Denis V. Lunev wrote: > From: Andrey Smetanin <asmetanin at virtuozzo.com> > > A new vcpu exit is introduced to notify the userspace of the > changes in Hyper-V synic configuraion triggered by guest writing to the > corresponding MSRs. > > Signed-off-by: Andrey Smetanin <asmetanin at virtuozzo.com> > Reviewed-by: Roman Kagan <rkagan at
2017 Feb 21
1
Samba compile
Dear all I'm just reentering the samba world after long time working by nfs only Now, I'm setting up current samba with keberos/ldap backend from source. configure --prefix=/usr/samba --sysconfdir=/etc/samba --localstatedir=/var --with-system-mitkrb5 works out fine but make isn't getting far and stops right away wit...
2006 Jul 29
1
best way to update one-to-many relationship
whats the best way to either add or remove entries for a one-to-many relationship. Should I just put all the entries associated with a record into form fields, and than on submit delete all the entries, and then reenter all of the ones on the current form. This would take into account addition and deletions to the database. whats the best way to do this with many-to-many assuming you want new entries created and not just linking two entries in different tables? -- Posted via http://www.ruby-forum.com/.
2001 Nov 09
0
AIX lastlog change
...place. It should be immediately after the password-authentication. Bug-Fix: The following fix works for us: ------------------------------------------------------------------------ diff auth-passwd.c.orig auth-passwd.c 151c151,160 < return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); --- > { int iau; > iau = (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); > debug("auth-passwd (FZJ-authenticate): rc: %d msg: %s", iau, authmsg); > if (iau) > return 1; > loginf...
2002 Mar 14
0
OpenSSH vs AIX 4.3.3 => 5.1 utmp patch
...bility on AIX 4.3.3 systems. Richard ------- *** openssh-2.9.9p2/auth-passwd.c.org Tue Jul 3 23:21:15 2001 --- openssh-2.9.9p2/auth-passwd.c Tue Oct 2 10:13:47 2001 *************** *** 147,153 **** } #endif #ifdef WITH_AIXAUTHENTICATE ! return (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0); #endif #ifdef KRB4 if (options.kerberos_authentication == 1) { --- 147,157 ---- } #endif #ifdef WITH_AIXAUTHENTICATE ! if (authenticate(pw->pw_name,password,&reenter,&authmsg) == 0) ! return 1; ! loginfailed(authctxt->user, ! get_canonica...
2009 Jul 24
4
Cannot install Matlab 5.3 R11
.... The SETUP.EXE runs correctly. The problem is when I enter the PLP (Personal License Password) required. I'm sure that the PLP is correct, but "matlab says not". The message is: "The PLP you have entered is incorrect. Check your PLP starts with the release number (11) and then reenter it". And, of course, I cannot continue the installation. What is happening? Do I have to set up anything in wine to install Matlab 5.3? Thanks in advance. Regards.
1999 Jul 02
2
problems with connecting to a share
Hi, I've the following problem. samba 2.0.3 runs on a sun. The security is server. The PDC is a NT-machine. Sometimes when users try to connect to a share they get the answer the password is incorrect. After a restart of smbd all works fine. Has anybody an idea???? regards Eckhard --------------------------------------------- Fraunhofer Institute Factory Operation and Automation (IFF)