Trace Control for Netem: Emulate network properties such as long range
dependency and self-similarity of cross-traffic.
user space (iproute2):
The directory tc/netem was split in two parts, one containing the original
distribution tables and the other the tools to generate trace files as well as
Trace Control for Netem: Emulate network properties such as long range
dependency and self-similarity of cross-traffic.
kernel space:
The delay, drop, duplication and corruption values are readout in user space
and sent to kernel space via configfs. The userspace process will "hang on
write" un
Trace Control for Netem: Emulate network properties such as long range
dependency and self-similarity of cross-traffic.
A new option (trace) has been added to the netem command. If the trace option
is used, the values for packet delay etc. are read from a pregenerated trace
file, afterwards the
Andrew Hall wrote:
Unfortunately I spoke too soon.. :-(
The driver no longer appears to fail under load but still fails randomly
with relatively light load:
I don't know if this will help, but NETDEV watchdog timeouts in the bcm43xx driver were fixed by
changing a netif_stop_queue call int
Unfortunately I spoke too soon.. :-(
The driver no longer appears to fail under load but still fails randomly
with relatively light load:
Sep 22 07:04:38 localhost syslog.info -- MARK --
Sep 22 07:24:38 localhost syslog.info -- MARK --
Sep 22 07:31:52 localhost user.info kernel: NETDEV WATCHDO
Gerrit,
Not sure what happened here but I can't apply this with git-apply. Can
you check and resubmit. Looks great patch though and would love to
test! This would mean DCCP is easier to port to which must be good.
Just a quick note - you didn't updated last changed date in
Documentation/networki
Arnaldo - this looks good.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
On 9/15/06, Gerrit Renker <[EMAIL PROTECTED]> wrote:
Sorry kmail garbled this, clean text below.
- Gerrit
--
diff --git a/net/dccp/Kconfig b/net/dccp/Kconfig
index 859e335..2c345c0 100644
--- a/net/dccp/Kconfig
+++ b/n
On 9/21/06, Ian McDonald <[EMAIL PROTECTED]> wrote:
Here is my latest set of patches for DCCP.
If possible I would like these to go into 2.6.19. I have tested against
2.6.18rc5 and latest net-2.6.19 git tree of Dave M as well.
Dave - Patches 1 and 2 are trivial and just introducing constants an
This shifts some constants from ccid3.c to ccid3.h
This is not needed for in tree code (yet) but for my own work.
Makes sense to have constants in header though.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 67d2dc0..7b4699
This creates two new socket options DCCP_SOCKOPT_TX_PACKET_SIZE
and DCCP_SOCKOPT_RX_PACKET_SIZE. DCCP_SOCKOPT_PACKET_SIZE doesn't
work and packet size should be set independently on two half
connections.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/include/linux/dccp.h b/includ
This change introduces a constant for CCID numbers.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/include/linux/dccp.h b/include/linux/dccp.h
index 2d7671c..a073164 100644
--- a/include/linux/dccp.h
+++ b/include/linux/dccp.h
@@ -169,6 +169,12 @@ enum {
DCCPO_MAX_CCID_SP
This adds DCCP probing shamelessly ripped off from TCP probes by Stephen
Hemminger.
I've put in here support for further CCID3 variables as well.
Andrea/Arnaldo might look to extend for CCID2.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/net/dccp/Kconfig b/net/dccp/Kconfig
ind
Here is my latest set of patches for DCCP.
If possible I would like these to go into 2.6.19. I have tested against
2.6.18rc5 and latest net-2.6.19 git tree of Dave M as well.
Dave - Patches 1 and 2 are trivial and just introducing constants and using
them. Patch 4 is shifting some code into a hea
This removes DCCP_SOCKOPT_PACKET_SIZE for two reasons:
* the current code doesn't work
* tx and rx should be different (introduced in former patch)
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/include/linux/dccp.h b/include/linux/dccp.h
index ef1c57b..18fbbb4 100644
--- a/inclu
With constants for CCID numbers this now uses them in some places.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/net/dccp/ccids/ccid2.c b/net/dccp/ccids/ccid2.c
index 457dd3d..2efb505 100644
--- a/net/dccp/ccids/ccid2.c
+++ b/net/dccp/ccids/ccid2.c
@@ -808,7 +808,7 @@ static voi
Set initial packet size to defaults as existing code doesn't work
as set_sockopt occurs after initialisation so dccps_packet_size
is of no use really.
Signed-off-by: Ian McDonald <[EMAIL PROTECTED]>
---
diff --git a/net/dccp/ccids/ccid3.c b/net/dccp/ccids/ccid3.c
index 7b4699a..e6c8e4c 100644
---
On Thu, Sep 21, 2006 at 05:42:35PM -0700, Jouni Malinen wrote:
> On Thu, Sep 21, 2006 at 03:55:14PM -0700, Jean Tourrilhes wrote:
>
> > > Jean, are there any other possibilities?
> >
> > Yes, dropping SIOCSIWAP (set) entirely, and keep only
> > SIOCGIWAP (get).
>
> I don't think that this wo
On Thu, Sep 21, 2006 at 03:55:14PM -0700, Jean Tourrilhes wrote:
> > Jean, are there any other possibilities?
>
> Yes, dropping SIOCSIWAP (set) entirely, and keep only
> SIOCGIWAP (get).
I don't think that this would be acceptable.
> We need to be pragmatic. Very few people need to
The Cirrus Logic ep93xx is an ARM SoC that includes an ethernet MAC
-- this patch adds a driver for that ethernet MAC.
Signed-off-by: Lennert Buytenhek <[EMAIL PROTECTED]>
Index: linux-2.6.18/drivers/net/arm/Kconfig
===
--- linux-2.6
On Thu, Sep 21, 2006 at 07:10:02PM -0400, Jeff Garzik wrote:
> >+if (!(rstat0 & RSTAT0_RFP)) {
> >+printk(KERN_CRIT "ep93xx_rx: buffer not done "
> >+ " %.8x %.8x\n", rstat0, rstat1);
> >+BUG();
> >+
On Sat, 16 Sep 2006 23:01:46 -0400
Daniel Drake <[EMAIL PROTECTED]> wrote:
> Stephen Hemminger wrote:
> > On Tue, 05 Sep 2006 21:36:24 -0400
> > Daniel Drake <[EMAIL PROTECTED]> wrote:
> >> There's a strange sky2 bug on the Gentoo bugzilla:
> >> http://bugs.gentoo.org/show_bug.cgi?id=136508
> >>
>
Lennert Buytenhek wrote:
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include
+#include "ep93xx_eth.h"
the header is short enough to simply include inline
+#define DRV_MODULE_NAME
On Fri, Sep 22, 2006 at 12:38:44AM +0200, Jiri Benc wrote:
> On Thu, 21 Sep 2006 13:39:18 -0700, mabbas wrote:
> > I can fix the patch to do just that if we agree on that.
>
> Well, we need a flag indicating whether we are associated or not. I don't
> know about such a flag in WE (hopefully we wil
At enslavement time, the primary slave might not be activated if
there is already an active slave and the new slave is the primary.
Replaced complicated logic with a call to bond_select_active_slave(),
which does the right thing.
Fixes http://bugzilla.kernel.org/show_bug.cgi?id=63
Patch 1: Validate probe replies in ARP monitor
Patch 2: Don't mangle LACPDUs
Patch 3: Fix primary selection error at enslavement time
These patches are against netdev-2.6#upstream with the set of 7
bonding patches from 1 September 2006 already applied.
-J
Fixed handling of 802.3ad LACPDUs. Do not byte swap data in
place in the packet. Updated nomenclature of "__ntohs_lacpdu" to be
"htons"; it was previously used for both ntohs and htons operations, but
only called ntohs functions.
Signed-off-by: Jay Vosburgh <[EMAIL PROTECTED]>
diff --g
Add logic to check ARP request / reply packets used for ARP
monitor link integrity checking.
The current method simply examines the slave device to see if it
has sent and received traffic; this can be fooled by extraneous traffic.
For example, if multiple hosts running bonding are
Add support for older fiber versions of the SysKonnect board. These chipsets
use an internal PHY so they require special handling. The older sk98lin
driver already supported these
Signed-off-by: Stephen Hemminger <[EMAIL PROTECTED]>
---
drivers/net/skge.c | 357 +
Jiri Benc wrote:
On Thu, 21 Sep 2006 12:57:01 -0700, mabbas wrote:
if the user set txpoer using iwconfig command, the driver will clap all
txpower to this
value for all available channels if channels original txpower is higher
than txpower value.
Looks like a job for the stack.
If th
On Thu, 21 Sep 2006 13:39:18 -0700, mabbas wrote:
> I can fix the patch to do just that if we agree on that.
Well, we need a flag indicating whether we are associated or not. I don't
know about such a flag in WE (hopefully we will have that in nl80211).
Now we have two possibilities:
(a) If a fi
Methinks CONFIG_NETFILTER_XT_TARGET_CLASSIFY should depend upon
CONFIG_BRIDGE_NETFILTER. Because brnf_deferred_hooks is defined in
net/bridge/br_netfilter.c and is referred to in net/netfilter/xt_physdev.c.
Or something else ;)
Begin forwarded message:
Date: Thu, 21 Sep 2006 14:41:13 -0700
F
On Thu, 21 Sep 2006 12:57:01 -0700, mabbas wrote:
> if the user set txpoer using iwconfig command, the driver will clap all
> txpower to this
> value for all available channels if channels original txpower is higher
> than txpower value.
Looks like a job for the stack.
If the stack takes care a
I was reading David's blog entries on the netdev meeting in Japan, and
have a question about this bit:
Currently, things like Xen have to put the card into promiscuous
mode, accepting all packets, which is quite inefficient.
Is the inefficient bit meant for accepting all packets, or more broa
On Thu, Sep 21, 2006 at 08:09:39PM +0200, Jiri Benc wrote:
> On Thu, 14 Sep 2006 07:33:21 -0700, David Kimdon wrote:
> > Wireless vlan interfaces need to have the same mac address as
> > other sub interfaces. Rather than complicate the kernel here by
> > adding yet another case where uniqueness is
Boris B. Zhmurov <[EMAIL PROTECTED]> :
[...]
> Is there any chance to get linux worked at least as fast, as freebsd-6.1
> with small udp packets?
> Any help will be more than welcome!
> Please, CC: me, due to I'm not subscribed to [EMAIL PROTECTED]
Can you publish dmesg, vmstat 1 and /proc/interr
The cirrus ep93xx is an ARM SoC that includes an ethernet MAC --
this patch adds a driver for that ethernet MAC.
Signed-off-by: Lennert Buytenhek <[EMAIL PROTECTED]>
Index: linux-2.6.18/drivers/net/arm/Kconfig
===
--- linux-2.6.18.or
Dan Williams wrote:
On Thu, 2006-09-21 at 12:47 -0700, mabbas wrote:
Dan Williams wrote:
On Thu, 2006-09-21 at 19:01 +0200, Jiri Benc wrote:
On Mon, 28 Aug 2006 13:49:35 -0700, mabbas wrote:
This patch indicate unassociated and radio off status
in name field
On Thu, 2006-09-21 at 12:47 -0700, mabbas wrote:
> Dan Williams wrote:
> > On Thu, 2006-09-21 at 19:01 +0200, Jiri Benc wrote:
> >
> >> On Mon, 28 Aug 2006 13:49:35 -0700, mabbas wrote:
> >>
> >>> This patch indicate unassociated and radio off status
> >>> in name field
> >>>
> >> NA
Jiri Benc wrote:
Thu, 21 Sep 2006 09:43:31 -0700, mabbas pise:
What about adding a new callback function fot txpower.
ieee80211_hw_config callback still confusing if txpower was
changed for channel change or because the user setting txpower limit.
Why should the driver care?
Jiri
Francois Romieu wrote:
Boris B. Zhmurov <[EMAIL PROTECTED]> :
[...]
Any ideas are welcome.
Usually my Pavlov answer is "disable iptables, run latest kernel, renice
ksoftirqd like hell, see if it makes a difference and keep netdev Cced".
Of course there is no iptables. And linux-2.6.18 show
Dan Williams wrote:
On Thu, 2006-09-21 at 19:01 +0200, Jiri Benc wrote:
On Mon, 28 Aug 2006 13:49:35 -0700, mabbas wrote:
This patch indicate unassociated and radio off status
in name field
NAK.
Fix SIOCGIWAP handler instead.
Right; the _one_ place anyone should ever hav
Hi Dave,
here are the pending patches that didn't make it into the 2.6.18 kernel
release. I have some additional fixes, but all of them need some more
additional testing from my side.
Regards
Marcel
Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/holtmann/bluetooth-2.6.
On Tue, 5 Sep 2006 11:50:35 -0700, David Kimdon wrote:
> Another fix to the interpretation of dev_alloc_name() return value.
> dev_alloc_name() returns the number of the unit assigned or a negative
> errno code.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubsc
Thu, 14 Sep 2006 07:33:56 -0700, David Kimdon pise:
> Interfaces of type IEEE80211_IF_TYPE_VLAN need to be able to
> receive ToDS frames.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a m
On Thu, 7 Sep 2006 09:15:54 -0700, David Kimdon wrote:
> crypt.alg is a string, use the correct type.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More maj
Sun, 10 Sep 2006 17:47:16 -0400, Michael Wu pise:
> This patch fixes the endian issues with the ICV in WEP, as pointed out by
> David Kimdon <[EMAIL PROTECTED]>, and uses __le32 where
> appropriate to make things clear.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
On Fri, 01 Sep 2006 11:37:37 +0800, Hong Liu wrote:
> Rework the patch according to Jiri's comments.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROTECTED]
More majo
On Fri, 01 Sep 2006 15:34:38 +0800, Hong Liu wrote:
> Thanks for point this out!
> Change to only set sta_scanning to 1 if hw_scan successes.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of
On Wed, 30 Aug 2006 10:41:00 +0200, Johannes Berg wrote:
> This patch replaces the if (...) else if (...) else if (...) ...
> statements I complained about earlier with switches.
On Wed, 30 Aug 2006 10:39:30 +0200, Johannes Berg wrote:
> This patch makes d80211 use BUILD_BUG_ON instead of checking
On Mon, 28 Aug 2006 13:52:06 -0700, mabbas wrote:
> This patch modify d80211 to report supported rates in readable
> format in iwlist scan command.
Applied to my tree. Thanks for the patch!
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the b
On Thu, 2006-09-21 at 19:01 +0200, Jiri Benc wrote:
> On Mon, 28 Aug 2006 13:49:35 -0700, mabbas wrote:
> > This patch indicate unassociated and radio off status
> > in name field
>
> NAK.
>
> Fix SIOCGIWAP handler instead.
Right; the _one_ place anyone should ever have to check for unassociated
This patch adds the ethtool -S (show statistics) feature to the
Spidernet ethernet driver. I have tested it extensively and believe it
is ready to be applied.
Signed-off-by: James K Lewis
---
drivers/net/spider_net.c | 10 ++
drivers/net/spider_net.h | 11 ++-
drive
Thu, 21 Sep 2006 09:43:31 -0700, mabbas pise:
> What about adding a new callback function fot txpower.
> ieee80211_hw_config callback still confusing if txpower was
> changed for channel change or because the user setting txpower limit.
Why should the driver care?
Jiri
--
Jiri Benc
SUSE Labs
compilation was broken in rt2x00 due to rfkill
attributed sneaking into rt2x00dev structure.
rfkill will replace current hardware button support
evantually, but lets fix rt2x00 compilation and
remove hardware button support for this time
until rfkill has been finished.
Signed-off-by Ivo van Doorn
James Morris wrote:
> On Thu, 21 Sep 2006, [EMAIL PROTECTED] wrote:
>
>
>>Fix a problem where NetLabel would always set the value of
>>sk_security_struct->peer_sid in selinux_netlbl_sock_graft() to the context of
>>the socket, causing problems when users would query the context of the
>>connecti
On Thu, 21 Sep 2006, [EMAIL PROTECTED] wrote:
> Fix a problem where NetLabel would always set the value of
> sk_security_struct->peer_sid in selinux_netlbl_sock_graft() to the context of
> the socket, causing problems when users would query the context of the
> connection. This patch fixes this
On Thu, 14 Sep 2006 07:33:21 -0700, David Kimdon wrote:
> Wireless vlan interfaces need to have the same mac address as
> other sub interfaces. Rather than complicate the kernel here by
> adding yet another case where uniqueness is not required, remove
> the check on mac address uniqueness altoget
On Thu, 31 Aug 2006 08:58:50 +0200, Johannes Berg wrote:
> On Wed, 2006-08-30 at 08:43 -0700, Jouni Malinen wrote:
> > Could you please separate cleanup parts (list_for_each changes) from
> > functional changes (adding locking) to make it easier to review the
> > patch?
>
> Yeah, I guess I should
Jiri Benc wrote:
On Mon, 28 Aug 2006 13:57:28 -0700, mabbas wrote:
diff --git a/net/d80211/ieee80211_sta.c b/net/d80211/ieee80211_sta.c
index a933d92..374193e 100644
--- a/net/d80211/ieee80211_sta.c
+++ b/net/d80211/ieee80211_sta.c
@@ -1543,8 +1543,6 @@ #endif
bss->channel = channel;
On Mon, 28 Aug 2006 13:57:28 -0700, mabbas wrote:
> diff --git a/net/d80211/ieee80211_sta.c b/net/d80211/ieee80211_sta.c
> index a933d92..374193e 100644
> --- a/net/d80211/ieee80211_sta.c
> +++ b/net/d80211/ieee80211_sta.c
> @@ -1543,8 +1543,6 @@ #endif
> bss->channel = channel;
> bss->
Jiri Benc wrote:
On Wed, 30 Aug 2006 10:19:19 -0700, Jouni Malinen wrote:
On Mon, Aug 28, 2006 at 01:45:34PM -0700, mabbas wrote:
This patch modify d80211 to add SIOCSIWRATE and SIOCGIWRATE
commands. this patch almost does the same thing as in
PRISM2_HOSTAPD_SET_RATE_SETS.
I d
On Mon, 28 Aug 2006 13:49:35 -0700, mabbas wrote:
> This patch indicate unassociated and radio off status
> in name field
NAK.
Fix SIOCGIWAP handler instead.
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to [EMAIL PROT
This patchset, made against net-2.6.19, contains a collection of fixes for bugs
found over the past few weeks as well as reworked Netlink interface which
should bring NetLabel more inline with common Netlink methods. My apologies
for not getting this out sooner, but the Netlink interface rewrit
Change NetLabel to use the 'recvfrom' socket permission and the
SECINITSID_NETMSG SELinux SID as the NetLabel base SID for incoming packets.
This patch effectively makes the old, and currently unused, SELinux NETMSG
permissions NetLabel permissions.
Signed-of-by: Paul Moore <[EMAIL PROTECTED]>
---
At the suggestion of Thomas Graf, rewrite NetLabel's use of Netlink attributes
to better follow the common Netlink attribute usage.
Signed-off-by: Paul Moore <[EMAIL PROTECTED]>
---
include/net/cipso_ipv4.h | 16 +-
include/net/netlabel.h | 49
net/ipv4/cipso_ip
Now that all of the supporting pieces of NetLabel have a home at SourceForge
update the Kconfig help text and add an entry to the MAINTAINERS file.
Signed-off-by: Paul Moore <[EMAIL PROTECTED]>
---
MAINTAINERS |7 +++
net/netlabel/Kconfig |5 -
2 files changed, 11 inserti
The CIPSOv4 cache traversal routines are triggered both the userspace events
(cache invalidation due to DOI removal or updated SELinux policy) and network
packet processing events. As a result there is a problem with the existing
CIPSOv4 cache spinlocks as they are not bottom-half/softirq safe. T
Fix a problem where NetLabel would always set the value of
sk_security_struct->peer_sid in selinux_netlbl_sock_graft() to the context of
the socket, causing problems when users would query the context of the
connection. This patch fixes this so that the value in
sk_security_struct->peer_sid is on
On Mon, 28 Aug 2006 13:50:54 -0700, mabbas wrote:
> This patch modify d80211 to add nick wireless command
The nick command is useless as was pointed by several other developers.
Therefore NAK.
Thanks,
Jiri
--
Jiri Benc
SUSE Labs
-
To unsubscribe from this list: send the line "unsubscribe net
Jiri Benc wrote:
Hi,
sorry for the long delay.
On Mon, 28 Aug 2006 13:45:18 -0700, mabbas wrote:
[...]
+static int ieee80211_ioctl_siwtxpow(struct net_device *dev,
+ struct iw_request_info *info,
+union iwreq_data *wrqu,
+char *extra)
+{
+
Majumder, Rajib wrote:
Let's say we have 2 uniprocessor hosts connected back to back. Is
there any possibility of an out-of-order scenario on recv?
Your application should be written on the assumption that it is
possible, regardless of the specifics of the hosts involved, however
unlikely th
On Wed, 30 Aug 2006 10:19:19 -0700, Jouni Malinen wrote:
> On Mon, Aug 28, 2006 at 01:45:34PM -0700, mabbas wrote:
>
> > This patch modify d80211 to add SIOCSIWRATE and SIOCGIWRATE
> > commands. this patch almost does the same thing as in
> > PRISM2_HOSTAPD_SET_RATE_SETS.
>
> I don't think I wou
Hi,
sorry for the long delay.
On Mon, 28 Aug 2006 13:45:18 -0700, mabbas wrote:
> [...]
> +static int ieee80211_ioctl_siwtxpow(struct net_device *dev,
> + struct iw_request_info *info,
> + union iwreq_data *wrqu,
> +
Hi,
sorry for the delay.
On Fri, 01 Sep 2006 11:37:57 +0800, Hong Liu wrote:
> @@ -2925,7 +2932,8 @@ static int ieee80211_ioctl_giwencode(str
> return 0;
> }
>
> - erq->length = 0;
> + erq->length = min((int)erq->length, sdata->keys[idx]->keylen);
> + memcpy(key,
* Arjan van de Ven:
>> if (irq)
>> spin_lock(&np->tx_lock);
>> else
>> spin_lock_irqsave(&np->tx_lock, flag);
>
> double p
>
> this is wrong to do with in_interrupt() as gating factor!
Well, this is not Hayim fault. It's in 2.6.18 as is.
Unfortunately, th
Andrey Savochkin wrote:
The main reason is that socket hash tables should be large enough to work
efficiently, but it isn't good to waste a lot of memory for each namespace.
Namespaces should be cheap enough, to allow to have hundreds of them.
This reason of memory efficiency, of course, has a p
Hi,
Send again with this time to netdev also. I didnt notice Steve not including
netdev in the first place.
> Hi Francois/Bora,
>
> > > Macro abuse. It should be a function.
> >
> > Yes but I got smc911x.h and smc91x.h as a basis. In the smc911x.c
> > there are macros which is longer than it, e.
* YOSHIFUJI Hideaki / ?$B5HF#1QL@ <[EMAIL PROTECTED]> 2006-09-21 14:30
> In article <[EMAIL PROTECTED]> (at Mon, 18 Sep 2006 20:57:46 +0200), Thomas
> Graf <[EMAIL PROTECTED]> says:
> > Same here, it doesn't make sense to export macros only of functional
> > value and used by userspace only. The s
On Wednesday 20 September 2006 16:23, Mike Galbraith wrote:
> On Tue, 2006-09-19 at 13:36 -0700, Andrew Morton wrote:
> > On Tue, 19 Sep 2006 22:25:21 +0200
> > "Rafael J. Wysocki" <[EMAIL PROTECTED]> wrote:
> >
> > > > - It took maybe ten hours solid work to get this dogpile vaguely
> > > > com
79 matches
Mail list logo