| From | Subject | Date |
|---|---|---|
| Stephen Rothwell | use of asm/prom.h
Hi all,
I noticed in the ALSA tree:
------------------------------ sound/sparc/dbri.c -------------------------=
-----
index 12d11fc..e96023f 100644
@@ -66,6 +66,7 @@
#include <sound/control.h>
#include <sound/initval.h>
=20
+#include <asm/prom.h>
#include <asm/sbus.h>
#include <asm/atomic.h>
(I don't mean to pick on this particular example, it is just what was in
front of me.)
Could people please consider using linux/{of,of_device,of_platform}.h
inst...
| Sep 5, 7:39 pm 2007 |
| Chuck Ebbert | Why do so many machines need "noapic"?
Some systems lock up without the noapic option. I found one
that will freeze while trying to set up the timer interrupt.
Passing 'nolapic' makes it freeze just after:
Setting up timer through ExtINT... works
Sometimes it will boot up and then freeze during the startup
scripts. Passing the noapic option fixes all that, but it
then gets 1000 spurious interrupts per second on IRQ7 (which
only shows ehci using it.) Kernel version is 2.6.22.
-
| Sep 5, 7:30 pm 2007 |
| Rik van Riel | [PATCH] prevent kswapd from freeing excessive amounts of low...
The current VM can get itself into trouble fairly easily on systems
with a small ZONE_HIGHMEM, which is common on i686 computers with
1GB of memory.
On one side, page_alloc() will allocate down to zone->pages_low,
while on the other side, kswapd() and balance_pgdat() will try
to free memory from every zone, until every zone has more free
pages than zone->pages_high.
Highmem can be filled up to zone->pages_low with page tables,
ramfs, vmalloc allocations and other unswappable things quit...
| Sep 5, 7:01 pm 2007 |
| Divy Le Ray | [PATCH 7/7] cxgb3 - Update engine microcode version
From: Divy Le Ray <divy@chelsio.com>
The new microcode engine version is set to 1.1.0
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/common.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common.h
index d3f276c..3e5b0db 100644
--- a/drivers/net/cxgb3/common.h
+++ b/drivers/net/cxgb3/common.h
@@ -127,8 +127,8 @@ enum { /* adapter interrupt-maintained statistics */
enum {
...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 6/7] cxgb3 - Add T3C rev
From: Divy Le Ray <divy@chelsio.com>
add driver recognition for T3C rev board.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/common.h | 1 +
drivers/net/cxgb3/cxgb3_main.c | 3 +++
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common.h
index 7e9e43d..d3f276c 100644
--- a/drivers/net/cxgb3/common.h
+++ b/drivers/net/cxgb3/common.h
@@ -438,6 +438,7 @@ enum { /* chip revisions...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 5/7 RESEND] cxgb3 - CQ context operations time out to...
From: Divy Le Ray <divy@chelsio.com>
Currently, the driver only tries up to 5 times (5us) to get the results
of a CQ context operation. Testing has shown the chip can take as much
as 50us to return the response on SG_CONTEXT_CMD operations. So we up
the retry count to 100 to cover high loads.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/t3_hw.c | 19 +++++++++++--------
1 files changed, 11 insertions(+), 8 deletions(-)
diff --git a/drivers/net/cxgb3/t...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 4/7 RESEND] cxgb3 - Set the CQ_ERR bit in CQ contexts.
From: Divy Le Ray <divy@chelsio.com>
The cxgb3 driver is incorrectly configuring the HW CQ context for CQ's
that use overflow-avoidance. Namely the RDMA control CQ. This results
in a bad DMA from the device to bus address 0. The solution is to set
the CQ_ERR bit in the context for these types of CQs.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/sge_defs.h | 4 ++++
drivers/net/cxgb3/t3_hw.c | 3 ++-
2 files changed, 6 insertions(+), 1 deletions(...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 3/7 RESEND] cxgb3 - remove false positive in xgmac wo...
From: Divy Le Ray <divy@chelsio.com>
Qualify toggling of xgmac tx enable with not getting pause frames,
we might not make forward progress because the peer is sending
lots of pause frames.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/common.h | 1 +
drivers/net/cxgb3/xgmac.c | 4 +++-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common.h
index ada5e4b..7e9e43d 100644
--- a/drivers/...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 2/7 RESEND] cxgb3 - log and clear PEX errors
From: Divy Le Ray <divy@chelsio.com>
Clear pciE PEX errors late at module load time.
Log details when PEX errors occur.
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/t3_hw.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c
index 2b49b96..cdcfc13 100644
--- a/drivers/net/cxgb3/t3_hw.c
+++ b/drivers/net/cxgb3/t3_hw.c
@@ -1358,6 +1358,10 @@ static void pcie_intr_handler(struct...
| Sep 5, 6:58 pm 2007 |
| Divy Le Ray | [PATCH 1/7 RESEND] cxgb3 - Firmware update
From: Divy Le Ray <divy@chelsio.com>
Update firmware version.
Allow the driver to be up and running with older FW image
Signed-off-by: Divy Le Ray <divy@chelsio.com>
---
drivers/net/cxgb3/common.h | 2 +-
drivers/net/cxgb3/cxgb3_main.c | 9 +++++----
drivers/net/cxgb3/t3_hw.c | 20 +++++++++++++++-----
drivers/net/cxgb3/version.h | 2 +-
4 files changed, 22 insertions(+), 11 deletions(-)
diff --git a/drivers/net/cxgb3/common.h b/drivers/net/cxgb3/common....
| Sep 5, 6:58 pm 2007 |
| Bill Huey | NetApp sues Sun regarding ZFS
Folks,
The official announcement.
http://www.netapp.com/news/press/news_rel_20070905
Dave Hitz's blog about it.
http://blogs.netapp.com/dave/
bill
-
| Sep 5, 6:52 pm 2007 |
| Willy Tarreau | 2.4.35.1 and panic at boot with arch=c3 and gcc-4.x
Axel, Richard,
you both reported a very similar problem to me (panic at boot on VIA c3
with 2.4.35.1 when built with gcc-4.1). I could reproduce the problem
with your configs here and compare the code with your working builds.
I finally tracked the problem down to a dirty trick used to prevent
do_test_wp_bit() from being inlined (Axel, you identified the right
file). Unfortunately, this trick does not work anymore when gcc-4.x
is used without -fno-unit-at-a-time, so let's use the correct method
...
| Sep 5, 6:00 pm 2007 |
| Satyam Sharma | Re: 2.4.35.1 and panic at boot with arch=c3 and gcc-4.x
Me too ... funnily enough, 2.6.23-rc5 still has that wrong comment in it!
-
| Sep 5, 6:40 pm 2007 |
| Paul E. McKenney | [PATCH RFC 0/8] RCU: Preemptible RCU
Work in progress, still not for inclusion.
This is a respin of the following prior postings:
http://lkml.org/lkml/2007/8/7/276 (the four initial preemptible RCU patches)
http://lkml.org/lkml/2007/8/17/262 (hotplug CPU for preemptible RCU)
http://lkml.org/lkml/2007/8/22/348 (RCU priority boosting)
http://lkml.org/lkml/2007/8/22/373 (rcutorture for RCU priority boosting)
This release adds an additional patch that makes the RCU priority booster
more friendly to power-savings measures by causing th...
| Sep 5, 5:31 pm 2007 |
| Paul E. McKenney | [PATCH RFC 1/8] RCU: Split API to permit multiple RCU implem...
Work in progress, not for inclusion.
This patch re-organizes the RCU code to enable multiple implementations
of RCU. Users of RCU continues to include rcupdate.h and the
RCU interfaces remain the same. This is in preparation for
subsequently merging the preemptible RCU implementation.
Signed-off-by: Dipankar Sarma <dipankar@in.ibm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
include/linux/rcuclassic.h | 149 +++++++++++
include/linux/rcupdate.h | 151...
| Sep 5, 5:32 pm 2007 |
| Paul E. McKenney | [PATCH RFC 2/8] RCU: Fix barriers
Work in progress, not for inclusion.
Fix rcu_barrier() to work properly in preemptive kernel environment.
Also, the ordering of callback must be preserved while moving
callbacks to another CPU during CPU hotplug.
Signed-off-by: Dipankar Sarma <dipankar@in.ibm.com>
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
rcuclassic.c | 2 +-
rcupdate.c | 10 ++++++++++
2 files changed, 11 insertions(+), 1 deletion(-)
diff -urpNa -X dontdiff linux-2.6.22-a-splitcl...
| Sep 5, 5:33 pm 2007 |
| Paul E. McKenney | [PATCH RFC 3/8] RCU: Preemptible RCU
Work in progress, not for inclusion.
This patch implements a new version of RCU which allows its read-side
critical sections to be preempted. It uses a set of counter pairs
to keep track of the read-side critical sections and flips them
when all tasks exit read-side critical section. The details
of this implementation can be found in this paper -
http://www.rdrop.com/users/paulmck/RCU/OLSrtRCU.2006.08.11a.pdf
This patch was developed as a part of the -rt kernel development and
meant to provide...
| Sep 5, 5:34 pm 2007 |
| Paul E. McKenney | [PATCH RFC 4/8] RCU: synchronize_sched() workaround for CPU ...
Work in progress, not for inclusion.
The combination of CPU hotplug and PREEMPT_RCU has resulted in deadlocks
due to the migration-based implementation of synchronize_sched() in -rt.
This experimental patch maps synchronize_sched() back onto Classic RCU,
eliminating the migration, thus hopefully also eliminating the deadlocks.
It is not clear that this is a good long-term approach, but it will at
least permit people doing CPU hotplug in -rt kernels additional wiggle
room in their design and impleme...
| Sep 5, 5:36 pm 2007 |
| Paul E. McKenney | [PATCH RFC 5/8] RCU: CPU hotplug support for preemptible RCU
Work in progress, not for inclusion.
This patch allows preemptible RCU to tolerate CPU-hotplug operations.
It accomplishes this by maintaining a local copy of a map of online
CPUs, which it accesses under its own lock.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
include/linux/rcuclassic.h | 2
include/linux/rcupreempt.h | 2
kernel/rcuclassic.c | 8 +++
kernel/rcupreempt.c | 93 +++++++++++++++++++++++++++++++++++++++++++--
4 files chan...
| Sep 5, 5:37 pm 2007 |
| Paul E. McKenney | [PATCH RFC 6/8] RCU priority boosting for preemptible RCU
Work in progress, not for inclusion.
RCU priority boosting is needed when running a workload that might include
CPU-bound user tasks running at realtime priorities with preemptible RCU.
In this situation, RCU priority boosting is needed to avoid OOM.
Please note that because Classic RCU does not permit RCU read-side
critical sections to be preempted, there is no need to boost the priority
of Classic RCU readers. Boosting the priority of a running process
does not make it run any faster, at least...
| Sep 5, 5:38 pm 2007 |
| Paul E. McKenney | [PATCH RFC 7/8] RCU: rcutorture testing for RCU priority boo...
Work in progress, not for inclusion. Still uses xtime because this
patch is still against 2.6.22.
This patch modifies rcutorture to also torture RCU priority boosting.
The torturing involves forcing RCU read-side critical sections (already
performed as part of the torturing of RCU) to run for extremely long
time periods, increasing the probability of their being preempted and
thus needing priority boosting. The fact that rcutorture's "nreaders"
module parameter defaults to twice the number of CPU...
| Sep 5, 5:39 pm 2007 |
| Paul E. McKenney | [PATCH RFC 8/8] RCU: Make RCU priority boosting consume less...
Work in progress, not for inclusion.
This patch modified the RCU priority booster to explicitly sleep when
there are no RCU readers in need of priority boosting. This should be
a power-consumption improvement over the one-second polling cycle in
the underlying RCU priority-boosting patch.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
---
include/linux/rcupreempt.h | 15 ++++++
kernel/rcupreempt.c | 102 ++++++++++++++++++++++++++++++++++++++++++++-
2 files cha...
| Sep 5, 5:39 pm 2007 |
| J. Bruce Fields | nfsd patches for 2.6.23
We've got two nfsd patches that fix a regression and a possible oops, so
both should probably go in before the 2.6.23 release.
Patches will follow, but they're also available from "for-linus" at:
ssh://linux-nfs.org/~bfields/exports/linux.git for-linus
--b.
Neil Brown (2):
knfsd: Fixed problem with NFS exporting directories which are mounted on.
knfsd: Validate filehandle type in fsid_source
fs/nfsd/nfsfh.c | 20 +++++++++++++++-----
fs/nfsd/vfs.c | 3 ++-
2 files c...
| Sep 5, 5:22 pm 2007 |
| J. Bruce Fields | [PATCH 1/2] knfsd: Fixed problem with NFS exporting director...
From: Neil Brown <neilb@suse.de>
Recent changes in NFSd cause a directory which is mounted-on
to not appear properly when the filesystem containing it is exported.
*exp_get* not returns -ENOENT rather than NULL and when
commit 5d3dbbeaf56d0365ac6b5c0a0da0bd31cc4781e1
removed the NULL checks, it didn't add a check for -ENOENT.
Signed-off-by: Neil Brown <neilb@suse.de>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
---
fs/nfsd/vfs.c | 3 ++-
1 files changed, 2 ...
| Sep 5, 5:22 pm 2007 |
| J. Bruce Fields | [PATCH 2/2] knfsd: Validate filehandle type in fsid_source
From: Neil Brown <neilb@suse.de>
fsid_source decided where to get the 'fsid' number to
return for a GETATTR based on the type of filehandle.
It can be from the device, from the fsid, or from the
UUID.
It is possible for the filehandle to be inconsistent
with the export information, so make sure the export information
actually has the info implied by the value returned by
fsid_source.
Signed-off-by: Neil Brown <neilb@suse.de>
Cc: "Luiz Fernando N. Capitulino" <lcapitulino@gmail...
| Sep 5, 5:22 pm 2007 |
| Michal Piotrowski | Linux 2.6.23-rc5-git1-krf1 (known regressions fixes)
Hi,
There are a few patches for regressions that was not merged yet.
Subject : 8250 claims non existing device blocking IO port
References : http://lkml.org/lkml/2007/8/18/20
Last known good : ?
Submitter : Andrey Borzenkov <arvidjaar@mail.ru>
Caused-By : ?
Handled-By : Bjorn Helgaas <bjorn.helgaas@hp.com>
Patch : http://lkml.org/lkml/2007/8/21/291
Status : patch available
Subject : Oops while modprobing phy fixed module
R...
| Sep 5, 5:05 pm 2007 |
| Avi Kivity | Re: [PATCH][RFC]: pte notifiers -- support for external page...
[resend due to broken cc list in my original post]
Yes. It's a lot simpler since this way we don't have to support vma
creation/splitting/merging/destruction. There's a tiny performance hit
for kvm, but it isn't worth the bother.
Will implement for v2 of this patch.
--
Any sufficiently difficult bug is indistinguishable from a feature.
-
| Sep 5, 4:42 pm 2007 |
| Eric Leblond | [Patch] Add support for PCMCIA card Sierra WIreless AC850
--=-cc4HNoCEDHc3b8Tzsaw9
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Hi,
This patch adds support for Sierra Wireless AC850 which has the same Ids
as the AC710/750 but has a different firmware.
PS: Please CC answer as I've not subscribed to the list.
BR,
--=20
Eric Leblond <eric@inl.fr>
INL SARL
--=-cc4HNoCEDHc3b8Tzsaw9
Content-Disposition: attachment; filename=Add-support-for-Sierra-Wireless-AC850.txt
Content-Type: text/plain; name=Add-support-for-Sier...
| Sep 5, 4:15 pm 2007 |
| Daniel Walker | Re: [PATCH 0/3] build system: section garbage collection for...
"it" is your patches, and I think we got to bottom of it .. "it" (i.e.
your patches) don't actually work with modules, which is what you
At least you should modify your Kconfig changes so that you don't allow
people to select your new option unless they have CONFIG_MODULES off..
Daniel
-
| Sep 5, 3:46 pm 2007 |
| Avi Kivity | Re: [PATCH][RFC]: pte notifiers -- support for external page...
It is, but the hooks are in much the same places. It could be argued
that you'd embed pte notifiers in paravirt_ops for a host kernel, but
that's not doable because pte notifiers use higher-level data strutures
(like vmas).
--
Any sufficiently difficult bug is indistinguishable from a feature.
-
| Sep 5, 3:32 pm 2007 |
| Avi Kivity | [PATCH][RFC] pte notifiers -- support for external page tables
[resend due to bad alias expansion resulting in some recipients
being bogus]
Some hardware and software systems maintain page tables outside the normal
Linux page tables, which reference userspace memory. This includes
Infiniband, other RDMA-capable devices, and kvm (with a pending patch).
Because these systems maintain external page tables (and external tlbs),
Linux cannot demand page this memory and it must be locked. For kvm at
least, this is a significant reduction in functionality.
Thi...
| Sep 5, 3:32 pm 2007 |
| Rusty Russell | Re: [kvm-devel] [PATCH][RFC] pte notifiers -- support for ex...
And lguest. I can't tell until I've actually implemented it, but I
think it will seriously reduce the need for page pinning which is why
only root can currently launch guests.
My concern is locking: this is called with the page lock held, and I
guess we have to bump the guest out if it's currently running.
(Oh, and this means lguest needs to do a reverse mapping somehow, but
I'll come up with something).
Cheers,
Rusty.
-
| Sep 5, 3:56 pm 2007 |
| Avi Kivity | Re: [kvm-devel] [PATCH][RFC] pte notifiers -- support for ex...
This will complicate kvm's locking too. We usually take kvm->lock to do
mmu ops, but that is now a mutex.
--
Any sufficiently difficult bug is indistinguishable from a feature.
-
| Sep 5, 4:17 pm 2007 |
| Daniel Walker | Re: [PATCH 0/3] build system: section garbage collection for...
Marcelo's version actual deals with the CONFIG_MODULES=y penalty , which
is interesting to me .. It removes symbols added for CONFIG_MODULES
which actually aren't used .. So CONFIG_MODULES=y is just as interesting
as without (to me at least..).
Daniel
-
| Sep 5, 3:24 pm 2007 |
| Adrian Bunk | Re: [PATCH 0/3] build system: section garbage collection for...
There's still stuff like kernel/module.c or the additional space each
used EXPORT_SYMBOL takes that make CONFIG_MODULES=n kernels smaller.
But it depends on the use case:
If you are aiming for the smallest possible runtime memory usage
CONFIG_MODULES=n is the best choice, while for some applications
where the bzimage (or similar) size is for some reason limited but
the size of the modules doesn't matter the approach you mention might
cu
Adrian
--
"Is there not promise of rain?...
| Sep 5, 3:46 pm 2007 |
| Michael Kerrisk | O_CLOEXEC / MSG_CMSG_CLOEXEC documentation
Ulrich,
For man-pages-2.66, I have added the following documentation in
the open.2 man page for the new-in-2.6.23 O_CLOEXEC.
O_CLOEXEC (Since Linux 2.6.23)
Enable the close-on-exec flag for the new file
descriptor. This is useful in multithreaded programs
since using a separate fcntl(2) F_SETFD operation to
set the FD_CLOEXEC flag does not suffice to avoid race
conditions in multithreaded programs where one thread
open...
| Sep 5, 3:02 pm 2007 |
| Bodo Eggert | Re: modinfo <modulename> question
/sys/modules/$NAME/parameters (if it's using the new API)
--
It is still called paranoia when they really are out to get you.
Friß, Spammer: uMwxkC@h.7eggert.dyndns.org vTfI21zo@tjJ.7eggert.dyndns.org
Ugj@SN6Crmm.7eggert.dyndns.org 8nFizbkCwk@-dTgS.7eggert.dyndns.org
-
| Sep 5, 2:02 pm 2007 |
| Alexey Dobriyan | [PATCH] Fix select on /proc files without ->poll
T Taneli Vahakangas <vahakang@cs.helsinki.fi> reported that
commit 786d7e1612f0b0adb6046f19b906609e4fe8b1ba aka
"Fix rmmod/read/write races in /proc entries"
broke SBCL + SLIME combo.
Old code in do_select() used DEFAULT_POLLMASK, if couldn't find ->poll
handler. New code makes ->poll always there and returns 0 by default,
which is not correct. Return DEFAULT_POLLMASK instead.
Steps to reproduce:
install emacs, SBCL, SLIME
emacs
M-x slime in *inferior-lisp* buffer
[watch it ...
| Sep 5, 1:56 pm 2007 |
| Justin Piszcz | modinfo <modulename> question
Is there anyway to get/see what parameters were passed to a kernel module?
Running modinfo -p <module> will show the defaults, but for example, st,
the scsi tape driver, is there a way to see what it is currently using? I
know in dmesg it shows this when you load it initially (but if say dmesg
has been cleared or the buffer was filled up)?
-
| Sep 5, 12:34 pm 2007 |
| Chris Snook | Re: modinfo <modulename> question
/sys/module/$MODULENAME/parameters/
-
| Sep 5, 3:55 pm 2007 |
| Andreas Schwab | Re: modinfo <modulename> question
/sys/module/<module>/parameters
Andreas.
--
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756 01D3 44D5 214B 8276 4ED5
"And now for something completely different."
-
| Sep 5, 1:17 pm 2007 |
| Justin Piszcz | Re: modinfo <modulename> question
And under 2.4?
Justin.
| Sep 5, 1:31 pm 2007 |
| Randy Dunlap | Re: modinfo <modulename> question
If a "module" (whether built as a loadable module or builtin to the
kernel image) uses module_param() with a permission (or mode) field
that allows reading that parameter, then the parameter will show up
in /sys/module/<module>/parameters/<parameter>.
E.g., drivers/scsi/sg has these parameters listed and are readable
by anyone:
-rw-r--r-- 1 root root 4096 Sep 5 10:07 allow_dio
-rw-r--r-- 1 root root 4096 Sep 5 10:07 def_reserved_size
-rw-r--r-- 1 root root 4096 Sep 5 10:07 scatt...
| Sep 5, 1:09 pm 2007 |
| David Howells | [PATCH] FRV: Make BSG declarations dependent on CONFIG_BLOCK
From: David Howells <dhowells@redhat.com>
Make BSG function declarations dependent on CONFIG_BLOCK as they are not
compilable if the block layer is compiled out.
Signed-off-by: David Howells <dhowells@redhat.com>
---
include/linux/bsg.h | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/linux/bsg.h b/include/linux/bsg.h
index 60e377b..28f5d44 100644
--- a/include/linux/bsg.h
+++ b/include/linux/bsg.h
@@ -52,6 +52,7 @@ struct sg_io_v4 {
};
...
| Sep 5, 11:23 am 2007 |
| Jens Axboe | Re: [PATCH] FRV: Make BSG declarations dependent on CONFIG_B...
Thanks David, I did seem to have lost it. Will apply!
--
Jens Axboe
-
| Sep 5, 11:56 am 2007 |
| Reyk Floeter | request for information about the "ath5k" licensing
Hello!
I'm the author of the free hardware driver layer for wireless Atheros
devices in OpenBSD, also known as "OpenHAL".
I'm still trying to get an idea about the facts and the latest state
of the incidence that violated the copyright of my code, because I
just returned from vacation.
I'm very disappointed about this and I hope that it was a mistake,
because it is very unfair and malicious against me and the OpenBSD
community. I invested a lot of time to write the code and to make it
work wi...
| Sep 5, 11:18 am 2007 |
| Michael Buesch | Re: request for information about the "ath5k" licensing
It has never been applied to any repository.
No.
-
| Sep 5, 12:35 pm 2007 |
| Luis R. Rodriguez | Re: request for information about the "ath5k" licensing
Well that is not accurate. Please give us a few we are working on
Same here. Apologies for this taking so long. It'll all be sorted out soon.
Luis
-
| Sep 5, 1:00 pm 2007 |
| Björn | Re: Rescanning SCSI/SATA bus
Works just fine here:
root@atjola:/sys/class/scsi_host/host0# echo - - - > scan
root@atjola:/sys/class/scsi_host/host0# cat proc_name
sata_nv
Björn
-
| Sep 5, 11:15 am 2007 |
| Jan Engelhardt | Re: Rescanning SCSI/SATA bus
FWIW, silently does nothing for sym53c8xx. For sata_nv, prints
something in dmesg.
Jan
--
-
| Sep 5, 11:17 am 2007 |
| previous day | today | next day |
|---|---|---|
| September 4, 2007 | September 5, 2007 | September 6, 2007 |
| Andrew Morton | -mm merge plans for 2.6.23 |
| Greg KH | [GIT PATCH] driver core patches against 2.6.24 |
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
| david | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| Gerrit Renker | [PATCH 03/37] dccp: List management for new feature negotiation |
| Arjan van de Ven | Re: [GIT]: Networking |
| Auke Kok | [PATCH] e1000e: test MSI interrupts |
git: | |
