Displaying 20 results from an estimated 1000 matches similar to: "Add new laptop to the wiki"
2015 Sep 02
2
Permissions to contribute to Storage SIG wiki pages
Hi,
we're working on adding more packages to the Storage SIG. For that I
would like to describe the build infrastructure so that other new
contributors can understand what build tags/targets are available and
where to add/build packages.
It seems I need to ask permission to edit wiki pages, could I get edit
rights for these?
- https://wiki.centos.org/SpecialInterestGroup/Storage
-
2007 Apr 10
1
Re: Laptop with VT - recommendations
my .02 cents
Don''t go SONY... :( I was very unhappy learning that they don''t
support VT from their Bios setup although the cpu is right.
model VGN-SZ3XP core duo2 7200 so called "Business oriented laptop"
The information is not clearly shown in their http://shop.sonystyle-europe.com/
and is hidden at
2008 Jun 26
2
Missing NSPluginWrapper.in ReleaseNotes for 5.2
Hello,
I just searched the wiki for info about NSPluginWrapper. It's a plugin
for Firefox which creates a kind of bridge between i386-plugins and a
x86_64 browser. That aside...
Well, looking for the string "NSPluginWrapper" and doing a text-search,
the only hit is the Japanese version of the Release Notes!? I don't
understand any of the text, but I interpret that the
2015 Sep 02
0
Permissions to contribute to Storage SIG wiki pages
On 2 September 2015 at 08:37, Niels de Vos <ndevos at redhat.com> wrote:
> Hi,
>
> we're working on adding more packages to the Storage SIG. For that I
> would like to describe the build infrastructure so that other new
> contributors can understand what build tags/targets are available and
> where to add/build packages.
>
> It seems I need to ask permission to
2007 Dec 17
7
Instant Windows -- Recipe
I have just installed Nevada build 75 and am tyring to create an HVM domain using the recipe posted @ http://opensolaris.org/os/community/xen/docs/windows.guest.html. When executing the ''xm create winxp.hvm'' command, I instantly receive the following output:
"ERROR Internal error: Could not obtain handle on privileged common interface (2 = No such file or directory)
Using
2008 Apr 01
2
openldap on Centos 5.1 with TLS
Hi, sorry for the stupid question,
but however i am following all howtos and tutorials it is not working
1) i have created CA certificate - /etc/pki/tls/misc/CA -newca
2) i have generated a new request - /etc/pki/tls/misc/CA -newreq
3) i have signed certificate /etc/pki/tls/misc/CA -signreq
SO i have CA in /etc/pki/CA
i have newkey.pem
i have newcert.pem
i have also cealrkey.pem (without
2008 Mar 31
5
[LLVMdev] Additional Optimization I'm Missing?
Hello, I'm working on using the LLVM JIT for a little project of mine,
amazing work first off! I have a question about optimization passes. I
initially have this function I've created, in python it looks like this:
OS_end = 50OS_start = 0OS_timestep = 1birth_rate = .3population =
30.0for time in range(OS_start, OS_end, OS_timestep):
births = birth_rate * population
deaths = 0.1
2008 Mar 29
3
Theora Roadmap Planning Online Meeting. This Tuesday.
We are scheduling another meeting to discuss Theora matters. One of
these was planned just a while ago, but it pretty much didn't happen.
So let's make this one happen.
Anyone interested in Theora or video technologies is welcome to
attend. The place is #xiphmeet at irc.freenode.net, this Tuesday at
14:00 UTC.
If you don't know when 14:00 UTC is, go here[1] for conversion into
2008 Mar 29
3
Theora Roadmap Planning Online Meeting. This Tuesday.
We are scheduling another meeting to discuss Theora matters. One of
these was planned just a while ago, but it pretty much didn't happen.
So let's make this one happen.
Anyone interested in Theora or video technologies is welcome to
attend. The place is #xiphmeet at irc.freenode.net, this Tuesday at
14:00 UTC.
If you don't know when 14:00 UTC is, go here[1] for conversion into
2008 Mar 29
3
Theora Roadmap Planning Online Meeting. This Tuesday.
We are scheduling another meeting to discuss Theora matters. One of
these was planned just a while ago, but it pretty much didn't happen.
So let's make this one happen.
Anyone interested in Theora or video technologies is welcome to
attend. The place is #xiphmeet at irc.freenode.net, this Tuesday at
14:00 UTC.
If you don't know when 14:00 UTC is, go here[1] for conversion into
2023 May 15
5
[Bridge] [PATCH net-next 1/2] bridge: Add a limit on FDB entries
A malicious actor behind one bridge port may spam the kernel with packets
with a random source MAC address, each of which will create an FDB entry,
each of which is a dynamic allocation in the kernel.
There are roughly 2^48 different MAC addresses, further limited by the
rhashtable they are stored in to 2^31. Each entry is of the type struct
net_bridge_fdb_entry, which is currently 128 bytes big.
2023 Oct 18
3
[Bridge] [PATCH iproute2-next v5] iplink: bridge: Add support for bridge FDB learning limits
Support setting the FDB limit through ip link. The arguments is:
- fdb_max_learned: A 32-bit unsigned integer specifying the maximum
number of learned FDB entries, with 0 disabling
the limit.
Also support reading back the current number of learned FDB entries in
the bridge by this count. The returned value's name is:
- fdb_n_learned: A 32-bit unsigned
2008 Apr 14
3
Merging daily and weekly data
Dear R-help group,
I have a dataset with daily closing prices from a stock exchange (consecutive 5 trading days) from a firm trading a specific commodity. The date variable looks like:
quote_date
20080411
With the format; yyyymmdd.
Moreover, I have another data set with a (average) weekly price of the underlying commodity. The date variables in this dataset are only year and a week number.
I
2023 Sep 05
1
[Bridge] [PATCH iproute2-next v3] iplink: bridge: Add support for bridge FDB learning limits
Support setting the FDB limit through ip link. The arguments is:
- fdb_max_learned_entries: A 32-bit unsigned integer specifying the
maximum number of learned FDB entries, with 0
disabling the limit.
Also support reading back the current number of learned FDB entries in
the bridge by this count. The returned value's name is:
-
2023 Jun 19
1
[Bridge] [PATCH net-next v2 1/3] bridge: Set BR_FDB_ADDED_BY_USER early in fdb_add_entry
This allows the called fdb_create to detect that the entry was added by
the user early in the process. This is in preparation to adding limits
in fdb_create that should not apply to user created fdb entries.
Signed-off-by: Johannes Nixdorf <jnixdorf-oss at avm.de>
---
Changes since v1:
- Added this change to ensure user added entries are not limited.
net/bridge/br_fdb.c | 6 +++---
1
2023 Jun 22
1
[Bridge] [PATCH net-next v2 2/3] bridge: Add a limit on learned FDB entries
On 20/06/2023 16:35, Johannes Nixdorf wrote:
> On Tue, Jun 20, 2023 at 09:55:31AM +0300, Nikolay Aleksandrov wrote:
>> On 6/19/23 10:14, Johannes Nixdorf wrote:
>>> +/* Set a FDB flag that implies the entry was not learned, and account
>>> + * for changes in the learned status.
>>> + */
>>> +static void __fdb_set_flag_not_learned(struct net_bridge *br,
2023 Jun 19
4
[Bridge] [PATCH net-next v2 0/3, iproute2-next 0/1] bridge: Add a limit on learned FDB entries
Introduce a limit on the amount of learned FDB entries on a bridge,
configured by netlink with a build time default on bridge creation in
the kernel config.
For backwards compatibility the kernel config default is disabling the
limit (0).
Without any limit a malicious actor may OOM a kernel by spamming packets
with changing MAC addresses on their bridge port, so allow the bridge
creator to limit
2008 Apr 02
2
New winetricks 20080402: new verbs dotnet20, win2k, flash, msls31; updated mono, liberation
Big news: as of today or so, wine doesn't need any patches
to install the .net 2.0 runtime or run trivial .net 2.0 apps,
so I've added a dotnet20 verb. No more futzing with recipes
to try out simple .net 2 apps, huzzah!
There are lots of other little changes, too:
20080402
r21 Added dotnet20, removed one kludge from dotnet11, added win2k
verb, plus shorthand for winver=foo
r20
2023 Jun 19
1
[Bridge] [PATCH iproute2-next 1/1] iplink: bridge: Add support for bridge FDB learning limits
Support setting the FDB limit through ip link. The arguments is:
- fdb_max_learned_entries: A 32-bit unsigned integer specifying the
maximum number of learned FDB entries, with 0
disabling the limit.
Also support reading back the current number of learned FDB entries in
the bridge by this count. The returned value's name is:
-
2023 May 15
2
[Bridge] [PATCH net-next 2/2] bridge: Add a sysctl to limit new brides FDB entries
On 15/05/2023 11:50, Johannes Nixdorf wrote:
> This is a convenience setting, which allows the administrator to limit
> the default limit of FDB entries for all created bridges, instead of
> having to set it for each created bridge using the netlink property.
>
> The setting is network namespace local, and defaults to 0, which means
> unlimited, for backwards compatibility