Now, gather address family information for the specified interface.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
tools/hv/hv_kvp_daemon.c | 11 +++
1 files changed, 11 insertions(+), 0 deletions(-)
diff --git a/tools/hv/hv_kvp_daemon.c b/tools/hv/hv_kvp_daemon.c
Implement support for the new IP injection messages in the driver code.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/hv_kvp.c | 141 --
1 files changed, 135 insertions(+), 6 deletions(-)
diff --git a/drivers/hv
Rename the function kvp_get_ip_address() to better reflect the functionality
being implemented.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
tools/hv/hv_kvp_daemon.c |6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/hv/hv_kvp_daemon.c b/tools
Now, gather DNS information. Invoke an external script (that can be
distro dependent) to gather the DNS information.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
tools/hv/hv_kvp_daemon.c | 23 +++
1 files changed, 23 insertions(+), 0 deletions(-)
diff
Gleixner , for their help.
In this version of the patch, based on the feedback, I have merged the IDT
vector
for Xen and Hyper-V and made the necessary adjustments.
Signed-off-by: K. Y. Srinivasan
---
arch/x86/include/asm/irq_vectors.h |4 +-
arch/x86/include/asm/mshyperv.h|4 +++
arch/x86
Greg suggested that it would be better to consolidate all the offer GUID
definitions in hyperv.h rather than having them defined in several files.
This patch-set does just that. Also, the shutdown code is executed in a thread
context.
K. Y. Srinivasan (6):
Drivers: hv: vmbus: Consolidate all
Consolidate all GUID definitions in hyperv.h and use these definitions in
implementing
channel bindings (as far as interrupt delivery goes).
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/channel_mgmt.c | 31 +++
include/linux/hyperv.h| 94
Use the consolidated GUID definitions in the Hyper-V mouse driver.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hid/hid-hyperv.c |3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/hid/hid-hyperv.c b/drivers/hid/hid-hyperv.c
index
Use the consolidated GUID definitions in the Hyper-V storage driver.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/scsi/storvsc_drv.c | 12 ++--
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi
Use the consolidated GUID definitions in the Hyper-V network driver.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/net/hyperv/netvsc_drv.c |3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/net/hyperv/netvsc_drv.c b/drivers/net/hyperv
Use the consolidated GUID definitions in the util and balloon drivers.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/hv_balloon.c |4 +---
drivers/hv/hv_util.c| 24
2 files changed, 13 insertions(+), 15 deletions(-)
diff --git a
Execute the shutdown code in a thread context. With recent changes made to the
shutdown code, shutdown code cannot be invoked from an interrupt context.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/hv_util.c | 12 +++-
1 files changed, 11 insertions(+), 1
Gleixner , for their help.
In this version of the patch, based on the feedback, I have merged the IDT
vector
for Xen and Hyper-V and made the necessary adjustments.
Signed-off-by: K. Y. Srinivasan
---
arch/x86/include/asm/irq_vectors.h |4 +-
arch/x86/include/asm/mshyperv.h|4 +++
arch/x86
patch:
X86: Handle Hyper-V vmbus interrupts as special hypervisor interrupts
Greg, Please apply this patch after 3.9-rc1.
Signed-off-by: K. Y. Srinivasan
---
drivers/hv/channel_mgmt.c |2 +-
drivers/hv/hv.c |5 ++---
drivers/hv/vmbus_drv.c| 11 +++
3 files changed, 10
llows the balloon driver to be more responsive both
in terms of reporting pressure to the host as well as responding to the requests
from the host.
K. Y. Srinivasan (3):
Drivers: hv: vmbus: Handle channel rescind message correctly
Drivers: hv: balloon: Execute balloon inflation in a separate
Execute the balloon inflation operation in a separate work context.
This allows us to decouple the pressure reporting activity from the
ballooning activity. Testing has shown that this decoupling makes the
guest more reponsive.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Properly cleanup the channel state on receipt of the "offer rescind" message.
Starting with ws2012, the host requires that the channel "relid" be properly
cleaned up when the offer is rescinded.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/c
Execute the hot-add operation in a separate work context.
This allows us to decouple the pressure reporting activity from the
"hot-add" activity.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
---
drivers/hv/hv_balloon.c | 40 ++-
Fix a bug in the error path of vmbus_open(). As part of this also
get rid of some unnecessary forward declarations as well as empty
functions. I would like to thank Jason Wang
for reporting the issues.
K. Y. Srinivasan (3):
Drivers: hv: Get rid of unnecessary forward declarations
Drivers: hv
Fix a memory leak in the error handling path in the function vmbus_open().
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Jason Wang
Cc: Stable
---
drivers/hv/channel.c | 24 +---
1 files changed, 13 insertions(+), 11 deletions(-)
diff --git a
hv_ringbuffer_cleanup() is an empty function; get rid of it.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Jason Wang
---
drivers/hv/channel.c |4
drivers/hv/hyperv_vmbus.h |1 -
drivers/hv/ring_buffer.c | 11 ---
3 files changed, 0
Get rid of unnecessary forward declarations.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Jason Wang
---
drivers/hv/channel.c |8
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c
index 4065374
Currently, we are returning the same string for both OSBuildNumber
and OSVersion keys. Return the full uts string for the OSBuild
key since Windows does not impose any restrictions on this.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Claudio Latini
---
tools/hv
Don't return loopback addresses and further don't terminate
the IP address strings with a semicolon. This is the current
behavior of Windows guests.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Claudio Latini
---
tools/hv/hv_kvp_daemon.c | 13 ++
This patch-set makes KVP implementation track the implementation
on Windows guests with regards to how IP addresses are returned.
Additionally, we also returns more information for the
OSBuild key.
K. Y. Srinivasan (2):
tools: hv: Return the full kernel version
Tools: hv: Don't r
Currently, we are returning the same string for both OSBuildNumber
and OSVersion keys. Return the full uts string for the OSBuild
key since Windows does not impose any restrictions on this.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Claudio Latini
---
tools/hv
Don't return loopback addresses and further don't terminate
the IP address strings with a semicolon. This is the current
behavior of Windows guests.
Signed-off-by: K. Y. Srinivasan
Reviewed-by: Haiyang Zhang
Reported-by: Claudio Latini
---
tools/hv/hv_kvp_daemon.c | 13 ++
Signed-off-by: K. Y. Srinivasan
---
arch/x86/include/asm/irq_vectors.h |2 +
arch/x86/include/asm/mshyperv.h|4 +++
arch/x86/kernel/cpu/mshyperv.c | 39
arch/x86/kernel/entry_32.S |7 ++
arch/x86/kernel/entry_64.S
Starting with win8, vmbus interrupts can be delivered on any VCPU in the guest
and
furthermore can be concurrently active on multiple VCPUs. Support this interrupt
delivery model by setting up a separate IDT entry for Hyper-V vmbus interrupts.
Signed-off-by: K. Y. Srinivasan
---
arch/x86
the boot
CPU.
Signed-off-by: K. Y. Srinivasan
---
drivers/hv/channel_mgmt.c |2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/hv/channel_mgmt.c b/drivers/hv/channel_mgmt.c
index c80fe62..7478ef9 100644
--- a/drivers/hv/channel_mgmt.c
+++ b/drivers/hv
Date:Mon, 26 Feb 2001 22:19:20 -0500
From: Jeremy Jackson <[EMAIL PROTECTED]>
I had written a simple program 10-20 lines C to count pulses at rate
of 1 per second give or take. It turned out that the driver disabled
the UART's generation of interrupts completely for certai
Date: Thu, 30 Nov 2000 17:13:27 -0500 (EST)
From: Alexander Viro <[EMAIL PROTECTED]>
* search for appropriate cylinder group had been taken out of the
ext2_new_inode() into helper functions - find_cg_dir(sb, parent_group) and
find_cg_other(sb, parent_group). Bug caught by D
From: "Albert D. Cahalan" <[EMAIL PROTECTED]>
Date:Sat, 2 Dec 2000 17:00:32 -0500 (EST)
> Any programmer who has evolved sufficiently from a scriptie
> should take necessary precautions to check how much data was
> transferred. Those who don't..well, there is still tomorro
Date:Sat, 2 Dec 2000 17:18:43 + (GMT)
From: Alan Cox <[EMAIL PROTECTED]>
> This is currently happening with lucent winmodem driver: there's
> modified version of serial.c, and customers are asked to compile it
> and (staticaly-)link it against proprietary code to get us
Date: Sat, 2 Dec 2000 18:34:44 -0500 (EST)
From: Alexander Viro <[EMAIL PROTECTED]>
Erm... Not that ignoring the return values was a bright idea, but the
lack of reliable ordered datagram protocol in IP family is not a good
thing. It can be implemented over TCP, but it's a big over
Date: Sat, 2 Dec 2000 18:21:26 -0700
From: "Jeff V. Merkey" <[EMAIL PROTECTED]>
Under this argument, it is argued that the engineer who had source
code access "inevitably used" negative knowledge he gained from
his study of the Linux sources. Absent the vague descriptions of
ile. Possible further
corruption.
I don't think I lost the directories until I did a 'fsck -y'
on the partition. Something to remember.
If it was just the directories that got lost, the files should have
been reparented to the /lost+found directory for that filesystrem.
Date:Fri, 1 Sep 2000 12:47:44 +0200 (MESZ)
From: "Dr. Michael Weller" <[EMAIL PROTECTED]>
Sorry, I've no idea about the ext2 and fs implementation.
However did you read the comment below and convince yourself that 'err' is
always set correctly?
I looked at it and was convi
From: Russell King <[EMAIL PROTECTED]>
Date: Fri, 1 Sep 2000 16:23:39 +0100 (BST)
At the marked line (! - line 647), what if flip.count is equal to
TTY_FLIPBUF_SIZE? Surely we're writing to a character outside the
flag_buf_ptr array? If that is the case, should we not move this
From: Daniel Phillips <[EMAIL PROTECTED]>
Date:Fri, 01 Sep 2000 20:49:14 +0200
Curiously, this field is measured in 512 byte units, giving a 2TB Ext2
filesize limit. That's starting to look uncomfortably small - I can
easily imagine a single database file wanting to be big
Date:Fri, 01 Sep 2000 08:47:04 -0700
From: Stephen Satchell <[EMAIL PROTECTED]>
5) Even better would be to obtain the services of a PR firm used to
dealing with high-tech questions -- if you would like a list of potential
sponsors I can poll the IPG to see who might be l
From: Ulrich Drepper <[EMAIL PROTECTED]>
Date:01 Sep 2000 14:52:28 -0700
1st Problem: One signal handler process process-wide
What is handled correctly now is sending signals to the group. Also
that every thread has its mask. But there must be exactly one signal
han
Andre wrote:
> Linux rejected the code because it does not understand nor does anyone
> have the desire to learn what it does. Since it is not in the kernel
> there is no GPL issue. Upon Microsoft's adpotion of the model they will
That's B.S. The GPL is a Copyright license; it applies whether
From: Russell Coker <[EMAIL PROTECTED]>
Date:Mon, 4 Sep 2000 15:42:57 +0200
In test7 the stallion.c serial driver is in the drivers/media/video
directory. This means that it won't compile and that compilation will break
if the Stallion driver is enabled.
Could this fil
Did someone manage to get a copy of the 0.0.9 cuecat kernel driver
before Lineo took it off the net (due to their getting threatenedd by
Digital Convergence over some bogus "the driver has our intellectual
property" threat)? If so, could someone send me a copy of the driver
via e-mail? Thanks!!
Date:Wed, 6 Sep 2000 01:43:47 +0100 (BST)
From: Alex Buell <[EMAIL PROTECTED]>
> Only, with the former, I get to restart the application everytime it
> croaks, with the latter (modules excluded) I have to reboot. This is
> much more time consuming and means you really have
Date:Sun, 10 Sep 2000 17:06:17 -0600
From: "Jeff V. Merkey" <[EMAIL PROTECTED]>
One of the principal architects at Compaq called me Friday after
reading Linus' email about not caring about commercial or support
issues for commercialization of Linux on this topic-- his right
Date:Mon, 11 Sep 2000 13:08:59 +
From: Pravir Chandra <[EMAIL PROTECTED]>
I've been working to change the implementation of /dev/random over to the
Yarrow-160a algorithm created by Bruce Schneier and John Kelsey. We've been
working on parallel development for Linux and
On Mon, 11 Sep 2000, Jeff V. Merkey wrote:
>
> Thanks Ted. I know, but a kernel debugger is one of those nasty pieaces
> of software that can quickly get out of sync if it's maintained
> separately from the tree -- the speed at which changes occur in Linux
> would render it a very difficult proj
Date: Mon, 11 Sep 2000 17:51:20 -0600
From: "Jeff V. Merkey" <[EMAIL PROTECTED]>
I support source level in the kernel. Based on Andi Klein's review, I
have grabbed ext2utils and am looking at a minimal int 0x13 interface to
load files into memory. hardest problem here for Linux i
Date:Mon, 11 Sep 2000 18:27:30 -0700
From: David Ford <[EMAIL PROTECTED]>
> I've told Linus several times about this problems but he puts out one
> test release after the other without this fixed.
This is kinda important, I run DNS tools which are threaded amongst
numer
Date: Tue, 12 Sep 2000 09:56:12 +
From: Pravir Chandra <[EMAIL PROTECTED]>
i agree that the yarrow generator does place some faith on the crypto
cipher and the accumulator uses a hash, but current /dev/random
places faith on a crc and urandom uses a hash.
No, not true. The m
Date:Wed, 13 Sep 2000 01:23:30 +0200 (CEST)
From: Igmar Palsenberg <[EMAIL PROTECTED]>
> No, not true. The mixing into the entropy pool uses a twisted LFSR, but
> all outputs from the pool (to either /dev/random or /dev/urandom)
> filters the output through SHA-1 as a whit
Date: Tue, 12 Sep 2000 23:37:57 -0700
From: David Ford <[EMAIL PROTECTED]>
> > 4. Boot Time Failures
> >
> > * Use PCI DMA 'lost interrupt' problem with some hw [which ?] (NEC
> >Versa LX with PIIX tuning)
>
> If this is a rare version of the BX/LX that has a
Date:Wed, 13 Sep 2000 08:46:00 +0200
From: Harald Dunkel <[EMAIL PROTECTED]>
How can I submit a bug report to be added to this list?
I *try* to follow bug reports sent to Linux-kernel, but if you want to
be sure, send it directly to me ([EMAIL PROTECTED]).
(And now for the sta
Date: Tue, 12 Sep 2000 23:55:55 -0700
From: David Ford <[EMAIL PROTECTED]>
Please add 'APM resume returns the machine to the first tty, crashes
X' This appeared w/ test8. If this is intended, I'd be very happy to
know if so and I can write in to xfree86 about it. If not
intend
Date: Wed, 13 Sep 2000 10:03:39 +0200
From: Andries Brouwer <[EMAIL PROTECTED]>
On Wed, Sep 13, 2000 at 01:56:39AM -0400, [EMAIL PROTECTED] wrote:
> 8. Fix Exists But Isnt Merged
...
> 9. To Do
> * Mount of new fs over existing mointpoint should return an error
>
Date:Wed, 13 Sep 2000 12:54:49 +0200 (CEST)
From: Trond Myklebust <[EMAIL PROTECTED]>
Don't forget that 2^20 > 10^6, hence if you really want units of
microseconds, you actually only need to save 3 bytes worth of data per
timestamp.
For the purposes of NFS, however the
Date:Wed, 13 Sep 2000 12:56:22 +0100 (BST)
From: Alan Cox <[EMAIL PROTECTED]>
> suggest a unique identifier for your patch? Humans are usually better
> at picking sensible names than a machine, and in discussions, it is
> better to refer to 'ide-foobar-fix3' than KP7562 ev
Date: Wed, 13 Sep 2000 22:35:10 +0200 (CEST)
From: Trond Myklebust <[EMAIL PROTECTED]>
You might be able to steal a couple of bytes and then rewrite ext2fs
to mask those out from the 'i_generation' field, but it would mean that
you could no longer boot your old 2.2.16 kernel withou
From: "Albert D. Cahalan" <[EMAIL PROTECTED]>
Date:Wed, 13 Sep 2000 19:20:42 -0400 (EDT)
The ext2 inode has 6 obviously free bytes, 6 that are only used
on filesystems marked as Hurd-type, and 8 that seem to be claimed
by competing security and EA projects. So, being wastef
Date: Thu, 14 Sep 2000 15:09:35 +0200 (CEST)
From: Trond Myklebust <[EMAIL PROTECTED]>
Would it perhaps make sense to use one of these last 'free' fields
as a pointer to an 'inode entension'?
If you still want ext2fs to be able to accommodate new projects and
ideas, then it seem
Date: Thu, 14 Sep 2000 17:12:35 +0200 (MEST)
From: [EMAIL PROTECTED] (Rogier Wolff)
The "right" way to do this is to have a "this spot is in use, but you
don't understand it" indication for an inode (*). The "expansion ptr"
can then normally point to the directly following inode, b
Date: Thu, 14 Sep 2000 17:03:11 +0200 (CEST)
From: Trond Myklebust <[EMAIL PROTECTED]>
For the timestamps, yes, but inode caching will take most of that
hit. After all, the only time stat() reads from disk is when the inode
has completely fallen out of the cache.
For commonly used
From: "Mike" <[EMAIL PROTECTED]>
Date:Thu, 14 Sep 2000 20:34:42 +0400
Just have compiled 2.4.0-test8 today...
Nothing interesting
Everything goes the same way as 2 test releases before...
All my devices are detected right, but... :-(
Kernel panic again at the file sys
Date: Wed, 13 Sep 2000 17:17:01 -0400
From: Jeff Garzik <[EMAIL PROTECTED]>
I ran with the idea, and created the attached patch, against
2.4.0-test8. It converts serial.c to the new PCI API (quite compactly,
I might add) It should be possible with this patch to now hotplug
ser
Date: Fri, 15 Sep 2000 01:06:24 +0200 (MEST)
From: [EMAIL PROTECTED] (Rogier Wolff)
My suggestion is indeed effectivly (almost) doubling the inode size.
However, it provides an upgrade path, where you can double-boot with a
kernel that DOESN"T know about the inodes.
The 2.2 kerne
Date:Sat, 21 Oct 2000 23:45:58 +0200
From: octave klaba <[EMAIL PROTECTED]>
I use the serial cart with 5.03 / 2.2.17
Serial driver version 5.03 (2000-08-11) with MANY_PORTS SHARE_IRQ SERIAL_PCI enabled
00:0d.0 Serial controller: Timedia Technology Co Ltd: Unknown device 716
Date: Tue, 24 Oct 2000 11:14:13 +0200
From: octave klaba <[EMAIL PROTECTED]>
> Can you actually give me some details of how your system "crashed"? It
> certainly shouldn't have. Kermit will sometimes hang waiting for the
> terminal to flush if it's enabled hardware flow control a
Date: Wed, 1 Nov 2000 09:46:19 -0500
From: [EMAIL PROTECTED]
On Mon, Oct 30, 2000 at 05:14:34PM +0100, Martin Dalecki wrote:
> Of corse right! BTW. There are tons of places where log2 is calculated
> explicitly in kernel which should be replaced with the corresponding
> built
Date:Thu, 02 Nov 2000 12:31:51 -0700
From: Tim Riker <[EMAIL PROTECTED]>
Me or Alan? I did not mean this as a dig. I feel strongly that one
should have the choice here. I do not choose to enforce my beliefs on
anyone else. I am suggesting only that others should provide the
Date: Thu, 02 Nov 2000 13:53:55 -0700
From: Tim Riker <[EMAIL PROTECTED]>
As is being discussed here, C99 has some replacements to the gcc syntax
the kernel uses. I believe the C99 syntax will win in the near future,
and thus the gcc syntax will have to be removed at some point. In
Date:Fri, 03 Nov 2000 14:44:17 -0500
From: [EMAIL PROTECTED]
My problem is that pthread_create (glibc 2.1.3, kernel 2.2.17 i686) is
failing because, deep inside glibc somewhere, nanosleep() is returning
EINTR.
Sounds like it might be a bug in pthread_create although th
Date:Mon, 6 Nov 2000 09:13:25 -0500 (EST)
From: George Talbot <[EMAIL PROTECTED]>
I respectfully disagree that programs which don't surround some of the
most common system calls with
do
{
rv = __some_system_call__(...);
} wh
From: Ulrich Drepper <[EMAIL PROTECTED]>
Date: 06 Nov 2000 10:50:37 -0800
> Arguably though the bug is in glibc, in that if it's using signals
> behinds the scenes, it should have passed SA_RESTART to sigaction.
Why are you talking such a nonsense?
The claim was made that pthrea
Date:Thu, 9 Nov 2000 13:39:04 + (GMT)
From: Paul Jakma <[EMAIL PROTECTED]>
I actually think Linus has been too loose/vague on modules. The
official COPYING txt file in the tree contains an exception on linking
to the kernel using syscalls from linus and the GPL. nothing
Date:Thu, 09 Nov 2000 08:43:14 -0500
From: Michael Rothwell <[EMAIL PROTECTED]>
And how would a hypothetical Advanced Linux Kernel Project be different?
Set aside the GKHI and the issue of binary-only hook modules; how would
an "enterprise" fork be any different than RT or
Date:Wed, 08 Nov 2000 16:35:33 -0500
From: Michael Rothwell <[EMAIL PROTECTED]>
Sounds great; unfortunately, the core group has spoken out against a
modular kernel.
This is true; that's because a modular kernel means that interfaces have
to be frozen in time, usually forever.
Date: Thu, 9 Nov 2000 14:26:33 + (GMT)
From: Alan Cox <[EMAIL PROTECTED]>
> Actually, he's been quite specific. It's ok to have binary modules as
> long as they conform to the interface defined in /proc/ksyms.
What is completely unclear is if he has the authority to say tha
From: [EMAIL PROTECTED]
Date:Fri, 10 Nov 2000 11:41:09 +
It has the potential to to make patches easier to re-work for different
kernel versions, and to enable development maintence and fixing of the
patch to be done independently of a kernel build. And it also has the
Date: Fri, 10 Nov 2000 10:36:31 -0800
From: "Matt D. Robinson" <[EMAIL PROTECTED]>
As soon as I finish writing raw write disk routines (not using kiobufs),
we can _maybe_ get LKCD accepted one of these days, especially now that we
don't have to build 'lcrash' against a kernel revis
Date: Fri, 8 Dec 2000 13:27:51 -0800 (PST)
From: Linus Torvalds <[EMAIL PROTECTED]>
I didn't have time to do more than just quickly apply the patch and leave
in a hurry, but my Vaio certainly recognized the serial port on the combo
cardbus card I have with this patch. Everything lo
Date: Fri, 8 Dec 2000 23:41:54 -0800 (PST)
From: Linus Torvalds <[EMAIL PROTECTED]>
This is a problem that many drivers have: when the card is removed, the
driver sees an interrupt (which happens to be the CardBus card removal
interrupt, but the serial driver doesn't know that, and
Date: Sat, 9 Dec 2000 10:13:50 -0800 (PST)
From: Linus Torvalds <[EMAIL PROTECTED]>
I checked my VAIO's, and they all have a Ricoh cardbus bridge.
Ted claimed he had a TI1311 or something, I think. So his VAIO is
definitely different from the ones I have. That may be enough of a
Date: Sat, 09 Dec 2000 11:13:59 -0500
From: Jeff Garzik <[EMAIL PROTECTED]>
> Note how the "rs_interrupt()" routine _tries_ to avoid this by having a
> pass counter value, but that logic never triggers because we will loop
> forever in receive_chars(), so the rs_interrupt() counter
Date:Fri, 15 Dec 2000 01:09:29 + (GMT)
From: Alan Cox <[EMAIL PROTECTED]>
> > oWe tell vendors to build RPMv3 , glibc 2.1.x
> Curious HOW do you tell vendors??
When they ask. More usefully Dan Quinlann and most vendors put together a
recommended set of thing
Date:Mon, 18 Dec 2000 21:38:01 +0100
From: Jamie Lokier <[EMAIL PROTECTED]>
David Schwartz wrote:
> The code does its best to estimate how much actual entropy it is gathering.
A potential weakness. The entropy estimator can be manipulated by
feeding data which looks ra
Date: Tue, 19 Dec 2000 12:49:48 +0100
From: Kurt Garloff <[EMAIL PROTECTED]>
On Mon, Dec 18, 2000 at 04:33:13PM -0500, Theodore Y. Ts'o wrote:
> Note that writing to /dev/random does *not* update the entropy estimate,
> for this very reason. The assumption is t
Date:Fri, 29 Sep 2000 19:24:01 +0200
From: Frederic Magniette <[EMAIL PROTECTED]>
We would like to do some operations on a ext2 disk while it is
mounted read-only. The problem is that our operations have no
effects because everithing is cached. Is it possible to shrink al
Date:Fri, 29 Sep 2000 17:49:04 -0600
From: "Jeff V. Merkey" <[EMAIL PROTECTED]>
This is going to be a continuing problem for non-Unix file systems like
NTFS and NWFS that rely on the ability to read and write variable length
sector runs.
It's not just non-Unix file syste
Date:Sat, 30 Sep 2000 04:10:59 +0200
From: Marc Lehmann <[EMAIL PROTECTED]>
Do you really think that explicitly supporting broken distributions
(redhat 7.0 comes with a experimental snapshot of gcc which is neither
binary compatible to 2.95 nor to 3.0, cutting binary compat
Date: Fri, 29 Sep 2000 22:16:53 -0700 (PDT)
From: Andre Hedrick <[EMAIL PROTECTED]>
Basically you can de-stroke a drive with what you let the OS/FS report.
Once this is done there is no way any FS can get to the stuff beyond what
it knows about.
I'm not sure what you mean by "de-s
Date: Thu, 14 Sep 2000 15:45:24 -0700
From: Larry McVoy <[EMAIL PROTECTED]>
I'm going to have to respectfully disagree. First of all, having a flag
day where everyone switches to BK just isn't a realistic expectation,
even if the license wasn't an issue. Things just don't work
Date:Wed, 13 Sep 2000 03:30:39 -0700
From: "David S. Miller" <[EMAIL PROTECTED]>
From: Daniel Quinlan <[EMAIL PROTECTED]>
Date: Wed, 13 Sep 2000 03:18:14 -0700 (PDT)
How exactly does a system to tracking patches and bugs/fixes (not to
mention helping Lin
Date:Wed, 13 Sep 2000 02:27:07 -0700
From: "David S. Miller" <[EMAIL PROTECTED]>
rsync [EMAIL PROTECTED]:/home/torvalds/src/linux \
ftp.kernel.org:/pub/linux/kernel/LIVE/linux
would be the real helper for people like me whose only real issue
now is bothering Lin
From: "Dunlap, Randy" <[EMAIL PROTECTED]>
Date: Wed, 13 Sep 2000 09:17:55 -0700
I appreciate Alan and you doing the kernel Status/TODO lists,
but I think that you ought to simplify it for yourself at
least (not that this would help Linus) by having maintainers
do it instead of y
Date: Wed, 13 Sep 2000 17:14:57 +0200 (MEST)
From: [EMAIL PROTECTED] (Rogier Wolff)
Today we fixed a problem in a driver we maintain here. We should've
gone ahead and generate the patch and queued it for Linus. However,
in reality we'd like the complaining customer to test the pat
Date:Fri, 06 Oct 2000 12:01:34 -0500
From: Jeff Dike <[EMAIL PROTECTED]>
tty_register_devfs and tty_unregister_devfs both declare "struct tty_struct" locals.
According to gdb:
(gdb) p sizeof(struct tty_struct)
$20 = 3084
This eats up most of a 4K page, and on UML t
92
Mar 15 15:40:34 walker kernel: eax: cc6ba00c ebx: 548ac520 ecx:
0292 edx: cc6ba00c
Mar 15 15:40:34 walker kernel: esi: cc6ba000 edi: cc6ba008 ebp:
esp: c1897f28
Mar 15 15:40:34 walker kernel: ds: 0018 es: 0018 ss: 0018
--
Shane Y. Gibson
x: cc6ba00c
Mar 15 15:40:34 walker kernel: esi: cc6ba000 edi: cc6ba008 ebp:
esp: c1897f28
Mar 15 15:40:34 walker kernel: ds: 0018 es: 0018 ss: 0018
--
Shane Y. Gibson [EMAIL PROTECTED]
Network Architect(408) 447-8253 work
IT Data
501 - 600 of 2088 matches
Mail list logo