Displaying 20 results from an estimated 9000 matches similar to: "[Bug 737] New: string matching can not be negated"
2019 Dec 11
4
[Bug 1390] New: iptables -m string not working with --algo bm and OUTPUT chain under 5.3.x
https://bugzilla.netfilter.org/show_bug.cgi?id=1390
Bug ID: 1390
Summary: iptables -m string not working with --algo bm and
OUTPUT chain under 5.3.x
Product: netfilter/iptables
Version: unspecified
Hardware: x86_64
OS: All
Status: NEW
Severity: normal
Priority: P5
2015 May 12
22
[Bug 2397] New: Match block doesn't match negated addresses
https://bugzilla.mindrot.org/show_bug.cgi?id=2397
Bug ID: 2397
Summary: Match block doesn't match negated addresses
Product: Portable OpenSSH
Version: 6.8p1
Hardware: Other
OS: Linux
Status: NEW
Severity: minor
Priority: P5
Component: sshd
Assignee: unassigned-bugs at
2019 Dec 04
2
[Bug 1385] New: Incorrectly evaluated expression with negated ip saddr and negated ip daddr
https://bugzilla.netfilter.org/show_bug.cgi?id=1385
Bug ID: 1385
Summary: Incorrectly evaluated expression with negated ip saddr
and negated ip daddr
Product: nftables
Version: unspecified
Hardware: x86_64
OS: Debian GNU/Linux
Status: NEW
Severity: normal
Priority: P5
2011 Jul 05
4
[Bug 1918] New: match_pattern_list fails for negated failure
https://bugzilla.mindrot.org/show_bug.cgi?id=1918
Bug #: 1918
Summary: match_pattern_list fails for negated failure
Classification: Unclassified
Product: Portable OpenSSH
Version: 5.8p2
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: sshd
2000 May 02
0
patch for .samba-2.0.7/source/lib/bitmap.c
Dear all,
I have made patch for
samba-2.0.7/source/lib/bitmap.c
With this patch
1) constant '32' is now named.
2) make only one malloc on bitmap_allocate().
( This will make bitmap to fit within same page, which will cause
lesser pagefault, I wish )
3) totally changed bitmap_find(). I guess this should work faster
then testing each bits one-by-one.
---
2023 Oct 18
2
@Michael Tokarev: Samba 4.17.12
16.10.2023 15:50, Ingo Asche via samba wrote:
> Hi Michael,
>
> short question: will the Bullseye-Backports getting 4.17.12, too?
>
> I saw, Bookworm is already updated...
Since oldstable-bpo archive in debian is always subject to manual
backports-policy processing (all uploads are processed manually),
I don't push stuff to oldstable-bpo often. On the other hand, this
2018 Dec 03
1
Re: [PATCH nbdkit v2] common: Move shared bitmap code to a common library.
On 12/2/18 10:33 AM, Richard W.M. Jones wrote:
> The cow and cache filters both use a bitmap mapping virtual disk
> blocks to status stored in the bitmap. The implementation of the
> bitmaps is very similar because one was derived from the other when
> the filters were implemented.
>
> The main difference is the cow filter uses a simple bitmap (one bit
> per block), whereas
2018 Dec 03
0
[PATCH nbdkit v3] common: Move shared bitmap code to a common library.
The cow and cache filters both use a bitmap mapping virtual disk
blocks to status stored in the bitmap. The implementation of the
bitmaps is very similar because one was derived from the other when
the filters were implemented.
The main difference is the cow filter uses a simple bitmap (one bit
per block), whereas the cache filter uses two bits per block.
This commit abstracts the bitmap
2018 Dec 02
0
[PATCH nbdkit v2] common: Move shared bitmap code to a common library.
The cow and cache filters both use a bitmap mapping virtual disk
blocks to status stored in the bitmap. The implementation of the
bitmaps is very similar because one was derived from the other when
the filters were implemented.
The main difference is the cow filter uses a simple bitmap (one bit
per block), whereas the cache filter uses two bits per block.
This commit abstracts the bitmap
2018 Dec 01
0
[PATCH nbdkit] common: Move shared bitmap code to a common library.
The cow and cache filters both use a bitmap mapping virtual disk
blocks to status stored in the bitmap. The implementation of the
bitmaps is very similar because one was derived from the other when
the filters were implemented.
The main difference is the cow filter uses a simple bitmap (one bit
per block), whereas the cache filter uses two bits per block.
This commit abstracts the bitmap
2005 Apr 18
2
Construction of a large sparse matrix
Dear List:
I'm working to construct a very large sparse matrix and have found
relief using the SparseM package. I have encountered an issue that is
confusing to me and wonder if anyone may be able to suggest a smarter
solution. The matrix I'm creating is a covariance matrix for a larger
research problem that is subsequently used in a simulation. Below is the
latex form of the matrix if
2019 Jan 01
0
[PATCH nbdkit v2 1/4] common/bitmap: Add bitmap_next function and tests.
It's useful to be able to search for the next non-zero entry in a
bitmap. This commit adds a ?bitmap_next? function to do that.
Because the bitmap is just a uint8_t buffer, using fast string
functions we should be able to do this quickly even if the bitmap is
sparse. (However the actual implementation is not optimized since
that is quite complicated - see to-do comments in
2019 Jan 01
0
[PATCH nbdkit v2 3/4] cache: Implement LRU structure.
---
filters/cache/lru.h | 54 ++++++++++++++
filters/cache/blk.c | 12 +++
filters/cache/lru.c | 150 ++++++++++++++++++++++++++++++++++++++
filters/cache/Makefile.am | 2 +
4 files changed, 218 insertions(+)
diff --git a/filters/cache/lru.h b/filters/cache/lru.h
new file mode 100644
index 0000000..4faefcd
--- /dev/null
+++ b/filters/cache/lru.h
@@ -0,0 +1,54 @@
+/* nbdkit
2019 Jan 03
0
[PATCH nbdkit v4 1/2] cache: Implement LRU structure.
---
filters/cache/lru.h | 54 ++++++++++++++
filters/cache/blk.c | 12 +++
filters/cache/lru.c | 151 ++++++++++++++++++++++++++++++++++++++
filters/cache/Makefile.am | 2 +
4 files changed, 219 insertions(+)
diff --git a/filters/cache/lru.h b/filters/cache/lru.h
new file mode 100644
index 0000000..4faefcd
--- /dev/null
+++ b/filters/cache/lru.h
@@ -0,0 +1,54 @@
+/* nbdkit
2023 Oct 18
2
@Michael Tokarev: Samba 4.17.12
Hi Michael,
thanks for the info - and your work...
As Bookworm for Raspberry isn't that far away, I can live with that.
This is "just" my playground...
Regards
Ingo
https://github.com/WAdama
Michael Tokarev via samba schrieb am 18.10.2023 um 09:17:
> 16.10.2023 15:50, Ingo Asche via samba wrote:
>> Hi Michael,
>>
>> short question: will the
2023 Oct 18
1
@Michael Tokarev: Samba 4.17.12
Op 18-10-2023 om 11:32 schreef Ingo Asche via samba:
> Hi Michael,
>
> thanks for the info - and your work...
>
> As Bookworm for Raspberry isn't that far away, I can live with that.
> This is "just" my playground...
I have recently migrated my Raspberry Pi machines from Raspbian to
Debian bookworm.
It has several advantages:
- All Debian packages are
2023 Oct 18
1
@Michael Tokarev: Samba 4.17.12
18.10.2023 10:17, Michael Tokarev via samba:
> Since oldstable-bpo archive in debian is always subject to manual
> backports-policy processing (all uploads are processed manually),
> I don't push stuff to oldstable-bpo often.? On the other hand, this
> security update definitely should go to oldstable-bpo.
https://ftp-master.debian.org/backports-new.html - samba is in
bullseye
2006 Oct 31
0
PSARC/2005/455 negated vacation filtering
Author: gww
Repository: /hg/zfs-crypto/gate
Revision: 95a42807db68c238898669fbcb1ff62b2498fad5
Log message:
PSARC/2005/455 negated vacation filtering
6304260 Implement PSARC/2005/455 negated vacation filtering
Files:
update: usr/src/cmd/sendmail/aux/vacation.c
2011 Sep 02
2
WineASIO JACK possible regression, Wine 1.3.26 ?
HI...
i have 2x KXStudios 10.x, Lucid in the same PC.
2x different HDDs, but exactly same Hitachi Ultrastar.
One has TangoStudio1.1-RT Kernel 2.6.xx
the other has Generic Kernel 2.6.23-33
the reason for this is the FGLRX drivers that does not support -RT Kernels.
one has Wine1.3.15
the other Wine1.3.26
the Generic Kernel + Wine 1.3.26 has problems with WineASIO JACK.
if i could re-install
2012 May 02
5
Winasio, somebody know how make it work??
Hi everybody
I am using a 12.04 Precise pangolin amd64 with jakd 1.5.8, wine 1.5.3 and wineasio 9.0 and i'm having a lot of problems to use de regsrv32 winasio.dll always drop me the "Failed to load DLL wineasio.dll"
I've copied the wineasio.dll.so in /usr/lib/x86_64-linux-gnu/wine and /usr/lib32/wine/
ive reinstalled wine, wineasio changed jackd2 to jackd did wineboot too so i