Displaying 20 results from an estimated 248 matches for "opportunist".
Did you mean:
opportunists
2002 Nov 01
0
Oplocks Usage Recommendations Whitepaper (with attachment)
...ut when to configure oplocks. This is intended as a
rudimentry guide to help avoid the most obvious oplock pitfalls.
Hopefully the plain text alignments hold up well for most editors. Word
messes things up.
Thanks,
Eric Roseme
Hewlett-Packard
-------------- next part --------------
HP-UX Samba Opportunistic Locking Usage Recommendations
Eric Roseme, Hewlett-Packard
October, 2002
Contents
Legal Notices 2
Chapter 1 Introduction 4
Chapter 2 O...
2002 Nov 20
3
here's a fix for Goldmine (and other ISAM database based programs) on Windows NT/2000/XP clients talking to samba
Goldmine seems to a compiled database application compiled in something likeClipper.
Clipper applications record lock through ISAM like files (DBF).
However, in Windows NT/2000/XP, Opportunistic locking is turned on
by default in order to accelerate file transfer from file services.
[Windows 95/98 did not Opportunisticly lock]
However, opportunistic locking corrupts ISAM and ISAM like databases.
Here is how to turn off opportunistic locking.
(NOTE: It has to be turned off at a system...
2016 Apr 06
2
Opportunistic quota recalc
I'm switching quota backend to redis (from maildir++), so all my current
usages are reset.
I get that I can do "doveadm quota recalc -A", but it takes forever (and
auth processes time out/crash).
It would make much more sense to recalc the usage on login if the
current usage is unset. Is there no way to do a
recalc-quota-on-first-login?
Thanks.
--
Tom Sommer
2016 Apr 06
2
Opportunistic quota recalc
On 2016-04-06 20:38, Timo Sirainen wrote:
> On 06 Apr 2016, at 13:43, Tom Sommer <mail at tomsommer.dk> wrote:
>>
>> I'm switching quota backend to redis (from maildir++), so all my
>> current usages are reset.
>>
>> I get that I can do "doveadm quota recalc -A", but it takes forever
>> (and auth processes time out/crash).
>>
2003 Jun 10
2
Opportunistic VoIP
This is an idea from FreeSWAN, which was implemented in the recently released version 1.0.
Basically the idea is that FreeSWAN sites automatically encrypt traffic between them
when possible, without having to set up the link ahead of time.
How this works is:
The sites publish some info in DNS.
FreeSWAN gets some traffic destined for that site.
- looks up the info in DNS
- if the info is there:
2016 Apr 07
2
Opportunistic quota recalc
On 07 Apr 2016, at 14:49, Tom Sommer <mail at tomsommer.dk> wrote:
>
> On 2016-04-06 21:09, Tom Sommer wrote:
>> On 2016-04-06 20:38, Timo Sirainen wrote:
>>> On 06 Apr 2016, at 13:43, Tom Sommer <mail at tomsommer.dk> wrote:
>>>> I'm switching quota backend to redis (from maildir++), so all my current usages are reset.
>>>> I get that
2017 Aug 22
0
pop 110/995, imap 143/993 ?
...r
about 993/995 not being official, they *are* official, but 465 is not
which is probably what led to the confusion.
> It would
> appear that STARTTLS is significantly more vulnerable to MITM attacks
> than plain SSL/TLS for all the above protocols. Is the slight extra
> convenience of opportunistic encryption really worth the substantial
> loss in security?
I would not say significantly. If the client is configured to require
encryption and to validate the resulting cert from the server then any
MITM vulnerability of STARTTLS is fully mitigated. A MITM attack is
only an issue if the c...
2024 Sep 13
1
Feedback on implementation of decoding of chained streams
...eading some code, and I can't
get my head around it, so I hope I can get some more help and/or
advice.
As an example, take a multiplexed, chained stream, with both links
being a video stream alongside a FLAC audio track. To find the end of
the first link and/or beginning of the second link, we
opportunistically seek forward, ending up in the second link. As a
FLAC page often contains about 0.3 seconds of audio, a 25mbit/s video
stream would have 1MB of pages before a FLAC page turns up, and 1MB
seems a little much to read forward opportunistically. 1MB also seems
the max Opus does while seeking in s...
2017 Mar 14
4
qmail package for CentOS 7
Is there any package available for qmail? I am having hard time finding it.
2020 Apr 18
4
Doc pointer request
At one point seems like I found a write up in
the Dovecot docs about having Dovecot directly
listen on port 25 using Opportunistic TLS along
with port 587 authentication, so only Dovecot was
required to handle incoming email.
Said another way, no requirement for Sendmail,
or Postfix or EXIM.
Just straight up Dovecot.
If I'm remembering correctly, someone point me
to the correct docs for this setup.
Thanks!
2005 May 23
3
Betr.: VPN
IF you are not stuck to IPSec, you might want to take a look at OpenVPN (www.openvpn.org). I found OpenVPN easier to install than FreeSWAN (an IPSEC VPN) and have setup an OpenVPN solution between my German office and our mainoffice in a matter of hours.
Thom van der Boon
E-Mail: Thom.van.der.Boon at vdb.nl
=====
Thom.H. van der Boon b.v.
Havens 563
Jan Evertsenweg 2-4
NL-3115 JA Schiedam
2017 Aug 21
6
pop 110/995, imap 143/993 ?
...r at all with STARTTLS
for imap, pop3 and even smtp (and by the way, port 465 for SMTP +
SSL/TLS *is* indeed deprecated officially)? It would appear that
STARTTLS is significantly more vulnerable to MITM attacks than plain
SSL/TLS for all the above protocols. Is the slight extra convenience of
opportunistic encryption really worth the substantial loss in security?
2017 Apr 20
1
[PATCH net-next v2 2/5] virtio-net: transmit napi
...xmit packets
> speculatively in virtnet_poll_tx(), we need call free_old_xmit_skbs()
> unconditionally. This can also help to reduce the possible of napi
> rescheduling in virtnet_poll_tx().
Because of the use of trylock there. Absolutely, thanks! Perhaps I should
only use trylock in the opportunistic clean path from the rx softirq and
full locking in the tx softirq.
I previously observed that cleaning here would, counterintuitively,
reduce efficiency. It reverted the improvements of cleaning transmit
completions from the receive softirq. Going through my data, I did
not observe this regressi...
2017 Apr 20
1
[PATCH net-next v2 2/5] virtio-net: transmit napi
...xmit packets
> speculatively in virtnet_poll_tx(), we need call free_old_xmit_skbs()
> unconditionally. This can also help to reduce the possible of napi
> rescheduling in virtnet_poll_tx().
Because of the use of trylock there. Absolutely, thanks! Perhaps I should
only use trylock in the opportunistic clean path from the rx softirq and
full locking in the tx softirq.
I previously observed that cleaning here would, counterintuitively,
reduce efficiency. It reverted the improvements of cleaning transmit
completions from the receive softirq. Going through my data, I did
not observe this regressi...
2024 Sep 13
1
Feedback on implementation of decoding of chained streams
...> get my head around it, so I hope I can get some more help and/or
> advice.
>
> As an example, take a multiplexed, chained stream, with both links
> being a video stream alongside a FLAC audio track. To find the end of
> the first link and/or beginning of the second link, we
> opportunistically seek forward, ending up in the second link. As a
> FLAC page often contains about 0.3 seconds of audio, a 25mbit/s video
> stream would have 1MB of pages before a FLAC page turns up, and 1MB
> seems a little much to read forward opportunistically. 1MB also seems
> the max Opus doe...
2003 Sep 21
0
Opening Task Manager close files on samba share
...?). Then the client seems to close all opened files to the shares.
I post at the end a part of the traces from the sniffer.
How can I stop this problem ?
Thanks.
SMB
Command: 0x73 (115) - Session Set Up and X (including User Logon)
Flags1: 0x18 (24)
Response: 0
Notify on every action: 0
Opportunistic Lock: 0
Canonized Paths: 1
Ignore Path Case: 1
Do Not Acknowledge: 0
LockAndOp Supported: 0
Flags2: 0x4807 (18439)
UNICODE: 0
NT-style error: 1
Read is allowed if execution is allowed: 0
Long Name: 1
Extended attributes: 1
Non-8.3 names allowed: 1
Tree ID: 0x0000 (0)
Proces...
2003 Oct 30
2
Debian Sarge (testing), Samba 3.0 RC4 and Quickbooks
...and permissions settings should be to support multi-user Quickbooks
on a Samba share?
The Long Version:
The Quickbooks data-file resides on it's own samba share (quickbooks),
and all the client workstations run Win2K SP4 with Quickbooks Pro 2002.
When we were running Samba 2.2.8, we disabled opportunistic locking on the
quickbooks share and we had no problems (except for a highly intermittent
situation where the Quickbooks agent wouldn't "let go" of the quickbooks
data file eventhough Quickbooks was no longer running as an application).
I upgraded to Samba 3.0Beta2+RC4 accidentally...
2001 Mar 23
2
File changes not being written immediately
Our development team has been having the following issue for quite some time
and I cannot isolate the problem. I saw a similar posting in the archives
but there are no replies.
We are running Samba 2.0.7 on a RedHat 6.2 server and we connect to the
server from Windows 2000 desktops. We are editing files through a drive
mapped to a share on the server. The problem is when we save the file in the
2012 Dec 13
3
[LLVMdev] Question about FMA formation
A little background:
The fmuladd intrinsic was introduced to support the FP_CONTRACT pragma in
C. llvm.fmuladd.* is generated by clang when it sees an expression of the
form 'a * b + c' within a single source statement.
If you want to opportunistically form FMA target instructions my
inclination would be to skip llvm.fmuladd.* and just form them from a*b+c
expressions at isel time. I don't see any fundamental problem with forming
llvm.fmuladd.* to model FMA formation opportunities in an IR pass though.
- Lang.
On Wed, Dec 12, 2012 at...
2015 Nov 18
0
[PATCH 1/3] x86/xen: Avoid fast syscall path for Xen PV guests
...tle less subtle:
>>
>> ALTERNATIVE "testl %eax, %eax; lz .Lsyscall_32_done", "jmp
>> .Lsyscasll_32_done", X86_FEATURE_XENPV
>>
>> Borislav, what do you think?
>>
>> Ditto for the others.
>
> Can you just add !xen_pv_domain() to the opportunistic SYSRET check
> instead? Bury the alternatives in that macro, ie.
> static_cpu_has(X86_FEATURE_XENPV). That would likely benefit other
> code as well.
We could, but that won't help the 64-bit case where we want to keep
the full asm path.
Also, Xen is capable of the equivalent of s...