Displaying 11 results from an estimated 11 matches for "invaidated".
Did you mean:
invalidated
2005 May 21
1
ssh + pam_winbind error 'incorrect password or invaid membership'
Configuration:
Samba 3.0.14a-1 (on debian 3.1) + winbind 3.0.14a-1 + krb5-user 1.3.6-2
I need help debugging pam_winbind.so in /etc/pam.d/ssh on debian.
Samba is a member of an AD domain, authenticating access to shares via
winbind+nsswitch.conf. Authentication to shares works great. Now I
want winbind to authenticate ssh users as a pam module and it's failing.
Below I show the output of
2008 Apr 15
2
dialed number notify at invalid dial situation
Originally posted by: mailto:
Hi all
Now I'm making IVR sequance that is customised [mainmanu].
I wish to notify invaid command like a following
exten => i,1,playback('your command is ...')
exten => i,2,playback(${EXTEN}) ; <---- Say 'i' oops! ;-(
exten => i,3,playback(' is incorrect! please again ')
# This exten lines are figure for instruction.
# I
2019 May 10
2
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
...int r;
>>
>> r = get_user_pages_fast(log, 1, 1, &page);
> OK so the trick is that page is pinned so you don't expect
> arch_futex_atomic_op_inuser below to fail. get_user_pages_fast
> guarantees page is not going away but does it guarantee PTE won't be
> invaidated or write protected?
Good point, then I think we probably need to do manual fixup through
fixup_user_fault() if arch_futex_atomic_op_in_user() fail.
>
>> if (r < 0)
>> return r;
>> BUG_ON(r != 1);
>> - base = kmap_atomic(page);
>> - set_bit(bit, bas...
2019 May 10
2
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
...int r;
>>
>> r = get_user_pages_fast(log, 1, 1, &page);
> OK so the trick is that page is pinned so you don't expect
> arch_futex_atomic_op_inuser below to fail. get_user_pages_fast
> guarantees page is not going away but does it guarantee PTE won't be
> invaidated or write protected?
Good point, then I think we probably need to do manual fixup through
fixup_user_fault() if arch_futex_atomic_op_in_user() fail.
>
>> if (r < 0)
>> return r;
>> BUG_ON(r != 1);
>> - base = kmap_atomic(page);
>> - set_bit(bit, bas...
2003 Apr 15
1
dialed number notify at invalid dial situation
Hi all
Now I'm making IVR sequance that is customised [mainmanu].
I wish to notify invaid command like a following
exten => i,1,playback('your command is ...')
exten => i,2,playback(${EXTEN}) ; <---- Say 'i' oops! ;-(
exten => i,3,playback(' is incorrect! please again ')
# This exten lines are figure for instruction.
# I know to use with gsm filename.
2002 Oct 14
1
help, HTB2 and filter ?
Hi ;
HTB2 patch for kernel 2.2.17
HTB2 patch for iproute2
Here is my script :
tc qdisc del dev eth0 root
tc qdisc add dev eth0 root handle 10: htb default 20
tc class add dev eth0 parent 10: classid:10:1 htb rate 90mbit ceil
90mbit burst 2000
tc class add dev eth0 parent 10:1 classid 10:100 htb rate 10mbit ceil
30mbit prio 1
tc class add dev eth0
2019 May 10
0
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
...>> ? ????? r = get_user_pages_fast(log, 1, 1, &page);
>> OK so the trick is that page is pinned so you don't expect
>> arch_futex_atomic_op_inuser below to fail.? get_user_pages_fast
>> guarantees page is not going away but does it guarantee PTE won't be
>> invaidated or write protected?
>
>
> Good point, then I think we probably need to do manual fixup through
> fixup_user_fault() if arch_futex_atomic_op_in_user() fail.
This looks like a overkill, we don't need to atomic environment here
actually. Instead, just keep pagefault enabled should...
2002 Oct 14
1
答复: Re: help, HTB2 and filter ?
>> BUT:
>>
>> tc filter add dev eth1 protocol ip parent 10:1 prio 1 handle 100 fw
>> classid 10:100
>>
>> OUTPUT : "RTNETLINK answers: Invaid argument"
>
>cls_fw is not loaded ? (quick guess only).
> devik
tc filter add dev eth1 protocol ip parent 10:1 prio 1 fw
can run !!
_______________________________________________
2019 May 09
2
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
Vhost log dirty pages directly to a userspace bitmap through GUP and
kmap_atomic() since kernel doesn't have a set_bit_to_user()
helper. This will cause issues for the arch that has virtually tagged
caches. The way to fix is to keep using userspace virtual
address. Fortunately, futex has arch_futex_atomic_op_inuser() which
could be used for setting a bit to user.
Note:
- There're archs
2019 May 09
2
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
Vhost log dirty pages directly to a userspace bitmap through GUP and
kmap_atomic() since kernel doesn't have a set_bit_to_user()
helper. This will cause issues for the arch that has virtually tagged
caches. The way to fix is to keep using userspace virtual
address. Fortunately, futex has arch_futex_atomic_op_inuser() which
could be used for setting a bit to user.
Note:
- There're archs
2019 May 09
0
[RFC PATCH V2] vhost: don't use kmap() to log dirty pages
...E) * 8;
> + u32 old;
> int r;
>
> r = get_user_pages_fast(log, 1, 1, &page);
OK so the trick is that page is pinned so you don't expect
arch_futex_atomic_op_inuser below to fail. get_user_pages_fast
guarantees page is not going away but does it guarantee PTE won't be
invaidated or write protected?
> if (r < 0)
> return r;
> BUG_ON(r != 1);
> - base = kmap_atomic(page);
> - set_bit(bit, base);
> - kunmap_atomic(base);
> +
> + r = arch_futex_atomic_op_inuser(FUTEX_OP_ADD, 1 << nr, &old, addr);
> + /* TODO: fallback to kmap() w...