| From | Subject | Date |
|---|---|---|
| Zhang, Rui | Re: AE_ERROR, ACPI thermal trip point state changed
hi, Márton,
Please re-send the acpidump using the latest pmtools at
http://www.kernel.org/pub/linux/kernel/people/lenb/acpi/utils/
thanks,
rui
--
| Mar 5, 6:49 pm 2008 |
| Adrian McMenamin | Behaviour of device_register
The observed behaviour for me is that it appears to be blocking the
vblank interrupt on my box (or more accurately stopping the workqueue
that the interrupt handler calls from running). And without the vblank
my bus won't process dma and so therefore the attempt to register the
device in question fails.
But I can see no reason from a glance over the code why that (vblanks
being blocked) would be the case - have I missed something and the
vblanks will be blocked, or should I be looking elsewhere for...
| Mar 5, 7:25 pm 2008 |
| Greg KH | Re: Behaviour of device_register
device_register(), on it's own, does not touch any hardware, nor prevent
anything else in the kernel from happening.
So I think you need to look elsewhere, like into the bus that is doing
the device_register() call :)
good luck,
greg k-h
--
| Mar 5, 7:46 pm 2008 |
| Nuno Tavares | [Fwd: Re: Dell OptiPlex 320 - Core 2 Duo]
I now notice this hasn't been CC'ed to the list. Apologies to all.
-NT
--
Nuno Tavares
DRI, Consultoria Informática
Telef: +351 936 184 086
--
| Mar 5, 6:57 pm 2008 |
| Artie Ziff | make target `headers_install'
Hi!
Is headers_install a valid make target? Somone on the kernel irc said it
was true, however when I run "make headers_install":
make: *** No rule to make target `headers_install'. Stop.
object/goal: I am attempting to install the includes and set up the asm
links (and whatnot), which is one step in a procedure to build a
cross-compile toolchain.
cheers,
az
--
| Mar 5, 6:56 pm 2008 |
| Randy Dunlap | Re: make target `headers_install'
headers_install is a valid make target is "recent" (last year or
so) kernels. It's in the top-level Makefile.
What kernel version are you using?
---
~Randy
--
| Mar 5, 7:11 pm 2008 |
| Joel Becker | [PATCH 0/7] ocfs2: Extended slot map
ocfs2 has a system file called "slot_map". A "slot" is a collection of
files local to particular mounted node, including the journal and
allocators that node is using. The slot map converts the slot number to
a node number, so when a node dies, ocfs2 knows which slot to recover.
The old ocfs2 slot map is a very limited. It has a physical maximum of
254 entries - specifically, it must fit within one disk block. It only
allows node numbers up to 254, and cannot be extended past INT16_MAX
(32767)....
| Mar 5, 6:51 pm 2008 |
| Joel Becker | [PATCH 6/7] ocfs2: Define the contents of the slot_map file.
The slot map file is merely an array of __le16. Wrap it in a structure for
cleaner reference.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
fs/ocfs2/ocfs2_fs.h | 12 ++++++++++++
fs/ocfs2/slot_map.c | 15 ++++++++-------
2 files changed, 20 insertions(+), 7 deletions(-)
diff --git a/fs/ocfs2/ocfs2_fs.h b/fs/ocfs2/ocfs2_fs.h
index 3633edd..3299116 100644
--- a/fs/ocfs2/ocfs2_fs.h
+++ b/fs/ocfs2/ocfs2_fs.h
@@ -475,6 +475,18 @@ struct ocfs2_extent_block
};
/*
+ * On...
| Mar 5, 6:52 pm 2008 |
| Joel Becker | [PATCH 3/7] ocfs2: Change the recovery map to an array of no...
The old recovery map was a bitmap of node numbers. This was sufficient
for the maximum node number of 254. Going forward, we want node numbers
to be UINT32. Thus, we need a new recovery map.
Note that we can't keep track of slots here. We must write down the
node number to recovery *before* we get the locks needed to convert a
node number into a slot number.
The recovery map is now an array of unsigned ints, max_slots in size.
It moves to journal.c with the rest of recovery.
Because it nee...
| Mar 5, 6:52 pm 2008 |
| Joel Becker | [PATCH 4/7] ocfs2: slot_map I/O based on max_slots.
The slot map code assumed a slot_map file has one block allocated.
This changes the code to I/O as many blocks as will cover max_slots.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
fs/ocfs2/slot_map.c | 128 +++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 108 insertions(+), 20 deletions(-)
diff --git a/fs/ocfs2/slot_map.c b/fs/ocfs2/slot_map.c
index 762360d..5bddee1 100644
--- a/fs/ocfs2/slot_map.c
+++ b/fs/ocfs2/slot_map.c
@@ -44,7 +44,8 @@
struct ...
| Mar 5, 6:52 pm 2008 |
| Joel Becker | [PATCH 7/7] ocfs2: New slot map format
The old slot map had a few limitations:
- It was limited to one block, so the maximum slot count was 255.
- Each slot was signed 16bits, limiting node numbers to INT16_MAX.
- An empty slot was marked by the magic 0xFFFF (-1).
The new slot map format provides 32bit node numbers (UINT32_MAX), a
separate space to mark a slot in use, and extra room to grow. The slot
map is now bounded by i_size, not a block.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
fs/ocfs2/ocfs2.h | ...
| Mar 5, 6:52 pm 2008 |
| Joel Becker | [PATCH 5/7] ocfs2: De-magic the in-memory slot map.
The in-memory slot map uses the same magic as the on-disk one. There is
a special value to mark a slot as invalid. It relies on the size of
certain types and so on.
Write a new in-memory map that keeps validity as a separate field. Outside
of the I/O functions, OCFS2_INVALID_SLOT now means what it is supposed to.
It also is no longer tied to the type size.
This also means that only the I/O functions refer to 16bit quantities.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
f...
| Mar 5, 6:52 pm 2008 |
| Joel Becker | [PATCH 2/7] ocfs2: Make ocfs2_slot_info private.
Just use osb_lock around the ocfs2_slot_info data. This allows us to
take the ocfs2_slot_info structure private in slot_info.c. All access
is now via accessors.
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
fs/ocfs2/journal.c | 24 +++++++-------
fs/ocfs2/ocfs2.h | 1 +
fs/ocfs2/slot_map.c | 81 ++++++++++++++++++++++++++++++++++++---------------
fs/ocfs2/slot_map.h | 25 ++-------------
4 files changed, 74 insertions(+), 57 deletions(-)
diff --git a/fs/ocfs2/jo...
| Mar 5, 6:51 pm 2008 |
| Joel Becker | [PATCH 1/7] ocfs2: Move slot map access into slot_map.c
From: Mark Fasheh <mark.fasheh@oracle.com>
journal.c and dlmglue.c would refresh the slot map by hand. Instead, have
the update and clear functions do the work inside slot_map.c. The eventual
result is to make ocfs2_slot_info defined privately in slot_map.c
Signed-off-by: Joel Becker <joel.becker@oracle.com>
---
fs/ocfs2/dlmglue.c | 8 +-----
fs/ocfs2/journal.c | 3 +-
fs/ocfs2/slot_map.c | 62 +++++++++++++++++++++++++++++++++++++++-----------
fs/ocfs2/slot_map.h | 1...
| Mar 5, 6:51 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 3/3] ide: remove ->cds field from ide_hwif_t
* Use hwif->name instead of cds->name in ide_allocate_dma_engine().
* Use pci_name(dev) instead of cds->name in init_dma_pdc202xx().
* Remove no longer needed ->cds field from ide_hwif_t.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-dma.c | 2 +-
drivers/ide/pci/pdc202xx_old.c | 5 +++--
drivers/ide/setup-pci.c | 1 -
include/linux/ide.h | ...
| Mar 5, 7:02 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 2/3] ide: remove ide_dma_iobase()
* ide_mapped_mmio_dma() and ide_iomio_dma() are called only by
ide_dma_iobase() so inline them there.
* ide_dma_iobase() is called only by ide_setup_dma() so inline
it there.
* Setup hwif->extra_base also if hwif->mmio flag is set.
There should be no functional changes casued by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-dma.c | 34 +++++++---------------------------
1 file changed, 7 insertions(+), 27 deletions(-)
Ind...
| Mar 5, 7:01 pm 2008 |
| Bartlomiej Zolnierki... | [PATCH 1/3] ide: remove ->extra field from struct ide_por...
Always setup hwif->extra_base in ide_iomio_dma() and remove
no longer needed ->extra field from struct ide_port_info.
There should be no functional changes caused by this patch.
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
drivers/ide/ide-dma.c | 3 +--
drivers/ide/pci/hpt34x.c | 2 --
drivers/ide/pci/hpt366.c | 6 ------
drivers/ide/pci/pdc202xx_old.c | 2 --
include/linux/ide.h | 1 -
5 files changed, 1 insertio...
| Mar 5, 7:00 pm 2008 |
| Oleg Nesterov | [RFC,PATCH 2/2] __group_complete_signal: fix? signal load-ba...
The patch needs an ack, probably I just misunderstood the comments.
Suppose that the main thread blocks the signal. In that case
__group_complete_signal() tries to find another thread starting from
signal->curr_target.
The comment says about load-balancing, but this is not what happens?
Suppose that wants_signal(signal->curr_target) == T. In that case we
always choose the same ->curr_target thread. Isn't it better to try
to "spread" the signals over the thread group?
With this patch w...
| Mar 5, 6:43 pm 2008 |
| Oleg Nesterov | [PATCH 1/2] __group_complete_signal: cache the value of p-&g...
Cosmetic, cache p->signal to make the code a bit more readable.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- 25/kernel/signal.c~3_GCS_CLEANUP 2008-03-06 00:43:50.000000000 +0300
+++ 25/kernel/signal.c 2008-03-06 01:07:55.000000000 +0300
@@ -842,6 +842,7 @@ static inline int wants_signal(int sig,
static void
__group_complete_signal(int sig, struct task_struct *p)
{
+ struct signal_struct *signal = p->signal;
struct task_struct *t;
/*
@@ -862,14 +863,14 @@ __group_c...
| Mar 5, 6:43 pm 2008 |
| Joe Korty | [PATCH] NUMA slab allocator migration bugfix
NUMA slab allocator cpu migration bugfix
The NUMA slab allocator (specifically, cache_alloc_refill)
is not refreshing its local copies of what cpu and what
numa node it is on, when it drops and reacquires the irq
block that it inherited from its caller. As a result
those values become invalid if an attempt to migrate the
process to another numa node occured while the irq block
had been dropped.
The solution is to make cache_alloc_refill reload these
variables whenever it drops and reacquires t...
| Mar 5, 6:33 pm 2008 |
| Christoph Lameter | Re: [PATCH] NUMA slab allocator migration bugfix
The new slab is allocated for the node that was determined earlier and
entered into the slab queues for that node. Howver, during the alloc we
were rescheduled.
Then we find ourselves on another processor and recalculate the ac
pointer. If we now retry then there is the danger of getting off node
objects into the per cpu queue. Which may cause the wrong lock to be taken
when draining queues. Sucks because it can cause data corruption. Same as
the other issues resolved by GFP_THISNODE.
Ack...
| Mar 5, 7:02 pm 2008 |
| Dave Jones | ACPI: WARNING: at arch/x86/mm/ioremap.c:138 __ioremap+0xa3/0...
> https://bugzilla.redhat.com/show_bug.cgi?id=436213
>
> Summary: WARNING: at arch/x86/mm/ioremap.c:138
> __ioremap+0xa3/0x153() (Not tainted)
> Product: Fedora
> Version: rawhide
> Platform: i686
> OS/Version: Linux
> Status: NEW
> Severity: low
> Priority: low
> Component: kernel
> AssignedTo: kernel-maint@redhat.com
>...
| Mar 5, 6:41 pm 2008 |
| Rafael J. Wysocki | Re: ACPI: WARNING: at arch/x86/mm/ioremap.c:138 __ioremap+0x...
This seems to be the same as http://bugzilla.kernel.org/show_bug.cgi?id=10104 .
--
| Mar 5, 7:03 pm 2008 |
| Jonathan McDowell | Re: Linux 2.6.25-rc4
In article
<alpine.LFD.1.00.0803042044460.12253@woody.linux-foundation.org>
Still crashes in acpi_get_data for me; the patch mentioned
<1204241934.10256.151.camel@acpi-hp-zz.sh.intel.com> and tracked at
http://bugzilla.kernel.org/show_bug.cgi?id=10132
still doesn't seem to have hit mainline and still fixes the issue for me.
-----
From: Lin Ming <ming.m.lin@intel.com>
Fix a memory overflow bug when copying
NULL internal package element object to external.
Signed-off-by...
| Mar 5, 6:30 pm 2008 |
| James Bottomley | [GIT PATCH] SCSI bug fixes for 2.6.25-rc4
Apart from the usual crop of bug fixes, it is hoped that both gdth
(under all circumstances) and aic94xx (under protocol errors) now work
after this.
The patch is available from:
master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git
The short changelog is:
Andrew Vasquez (4):
qla2xxx: Update version number to 8.02.00-k9.
qla2xxx: Correct usage of inconsistent timeout values while issuing ELS co
qla2xxx: Correct discrepancies during OVERRUN handling on FWI2...
| Mar 5, 6:26 pm 2008 |
| David Rientjes | [patch -mm 1/6] mempolicy: convert MPOL constants to enum
The mempolicy mode constants, MPOL_DEFAULT, MPOL_PREFERRED, MPOL_BIND,
and MPOL_INTERLEAVE, are better declared as part of an enum since they
are sequentially numbered and cannot be combined.
The policy member of struct mempolicy is also converted from type short
to type unsigned short. A negative policy does not have any legitimate
meaning, so it is possible to change its type in preparation for adding
optional mode flags later.
The equivalent member of struct shmem_sb_info is also changed from...
| Mar 5, 6:16 pm 2008 |
| David Rientjes | [patch -mm 2/6] mempolicy: support optional mode flags
With the evolution of mempolicies, it is necessary to support mempolicy
mode flags that specify how the policy shall behave in certain
circumstances. The most immediate need for mode flag support is to
suppress remapping the nodemask of a policy at the time of rebind.
Both the mempolicy mode and flags are passed by the user in the 'int
policy' formal of either the set_mempolicy() or mbind() syscall. A new
constant, MPOL_MODE_FLAGS, represents the union of legal optional flags
that may be passed a...
| Mar 5, 6:16 pm 2008 |
| David Rientjes | [patch -mm 3/6] mempolicy: add MPOL_F_STATIC_NODES flag
Add an optional mempolicy mode flag, MPOL_F_STATIC_NODES, that suppresses
the node remap when the policy is rebound.
Adds another member to struct mempolicy, nodemask_t user_nodemask, as
part of a union with cpuset_mems_allowed:
struct mempolicy {
...
union {
nodemask_t cpuset_mems_allowed;
nodemask_t user_nodemask;
} w;
}
that stores the the nodemask that the user passed when he or she created
the mempolicy via set_mempolicy() or mbind(). When using
MPOL_F_STATIC_NODES, wh...
| Mar 5, 6:16 pm 2008 |
| David Rientjes | [patch -mm 4/6] mempolicy: add bitmap_onto() and bitmap_fold...
From: Paul Jackson <pj@sgi.com>
The following adds two more bitmap operators, bitmap_onto() and
bitmap_fold(), with the usual cpumask and nodemask wrappers.
The bitmap_onto() operator computes one bitmap relative to
another. If the n-th bit in the origin mask is set, then the
m-th bit of the destination mask will be set, where m is
the position of the n-th set bit in the relative mask.
The bitmap_fold() operator folds a bitmap into a second that
has bit m set iff the input bitmap has so...
| Mar 5, 6:16 pm 2008 |
| David Rientjes | [patch -mm 5/6] mempolicy: add MPOL_F_RELATIVE_NODES flag
Adds another optional mode flag, MPOL_F_RELATIVE_NODES, that specifies
nodemasks passed via set_mempolicy() or mbind() should be considered
relative to the current task's mems_allowed.
When the mempolicy is created, the passed nodemask is folded and mapped
onto the current task's mems_allowed. For example, consider a task
using set_mempolicy() to pass MPOL_INTERLEAVE | MPOL_F_RELATIVE_NODES
with a nodemask of 1-3. If current's mems_allowed is 4-7, the effected
nodemask is 5-7 (the second, third, ...
| Mar 5, 6:16 pm 2008 |
| David Rientjes | [patch -mm 6/6] mempolicy: update NUMA memory policy documen...
Updates Documentation/vm/numa_memory_policy.txt and
Documentation/filesystems/tmpfs.txt to describe optional mempolicy mode
flags.
Cc: Christoph Lameter <clameter@sgi.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
Cc: Andi Kleen <ak@suse.de>
Cc: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David Rientjes <rientjes@google.com>
Signed-off-by: Paul Jackson <pj@sgi.com>
---
Documentation/filesystems/tmpfs.txt | 12 +++
Documentation/vm/numa_m...
| Mar 5, 6:16 pm 2008 |
| H. Peter Anvin | Re: RELEASE BLOCKER: Linux doesn't follow x86/x86-64 ABI wrt...
Not quite, but fixing it in the kernel is easy.
Still breaks for running on all old kernels.
-hpa
--
| Mar 5, 6:05 pm 2008 |
| Michael Matz | Re: RELEASE BLOCKER: Linux doesn't follow x86/x86-64 ABI wrt...
Hi,
The problem is with old kernels, which by definition stay unfixed.
Ciao,
Michael.
--
| Mar 5, 5:59 pm 2008 |
| Adrian Bunk | Re: RELEASE BLOCKER: Linux doesn't follow x86/x86-64 ABI wrt...
Compiling older kernels with new gcc versions has never been supported.
You are e.g. aware that for many 32bit architectures (including i386)
and kernels up to and including 2.6.25-rc4 even the build fails with
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
--
| Mar 5, 6:13 pm 2008 |
| Olivier Galibert | Re: RELEASE BLOCKER: Linux doesn't follow x86/x86-64 ABI wrt...
You read the thread too fast. It's not at all about compiling the
kernel.
OG.
--
| Mar 5, 7:13 pm 2008 |
| David Miller | Re: RELEASE BLOCKER: Linux doesn't follow x86/x86-64 ABI wrt...
From: Adrian Bunk <bunk@kernel.org>
Adrian we're talking about userland binaries compiled by
gcc-4.3, not the kernel.
Please follow the discussion if you'd like to contribute.
Thanks.
--
| Mar 5, 6:21 pm 2008 |
| Pavel Roskin | [PATCH] sched: make task_nice available to non-GPL modules
The API is trivial, and so is the implementation. Linux priorities are
exposed to the userspace, so nobody should claim that software aware of
Linux priorities is a derived work of the kernel.
The complementary function set_user_nice() is available to non-GPL
modules. If the module can set the priority, it should be able to read
it back.
Signed-off-by: Pavel Roskin <proski@gnu.org>
---
kernel/sched.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/s...
| Mar 5, 5:56 pm 2008 |
| Adam Schrotenboer | nfs_update_inode: inode X mode changed, Y to Z [repost with ...
This is a multi-part message in MIME format.
--------------050103040301050606010701
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: quoted-printable
Running SLES 10 on multiple compute nodes, with an OpenSuSE 10.2 NF=
S
server, and I am receiving the above log message on a semi-regular basis
in the NFS client system-logs. When this occurs, one of the users
receives an error (although there seems to be no way to easily collate
the users experience with ...
| Mar 5, 5:23 pm 2008 |
| Oleg Nesterov | [PATCH -mm 2/2] send_sigqueue: don't forget about handle_sto...
(on top of Pavel's signals-consolidate-send_sigqueue-and-send_group_sigqueue.patch)
send_group_sigqueue() calls handle_stop_signal(), send_sigqueue() doesn't.
This is not consistent and in fact I'd say this is (minor) bug.
Move handle_stop_signal() from send_group_sigqueue() to do_send_sigqueue(),
the latter is called by send_sigqueue() too.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- 25/kernel/signal.c~2_SS_HSS 2008-03-06 00:35:35.000000000 +0300
+++ 25/kernel/signal.c 2008-03-0...
| Mar 5, 5:53 pm 2008 |
| Oleg Nesterov | Re: [PATCH -mm 2/2] send_sigqueue: don't forget about handle...
Sorry for the noise, but I forgot to mention that this patch of course depends
on signals-re-assign-cld_continued-notification-from-the-sender-to-reciever.patch
Oleg.
--
| Mar 5, 7:52 pm 2008 |
| Oleg Nesterov | [PATCH -mm 1/2] send_sigqueue: don't take rcu lock
(depends on lock_task_sighand-add-rcu-lock-unlock.patch)
lock_task_sighand() was changed, send_sigqueue() doesn't need rcu_read_lock()
any longer.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- 25/kernel/signal.c~1_SS_NO_RCU 2008-03-06 00:31:08.000000000 +0300
+++ 25/kernel/signal.c 2008-03-06 00:35:35.000000000 +0300
@@ -1311,8 +1311,6 @@ int send_sigqueue(int sig, struct sigque
* We return -1, when the task is marked exiting, so
* posix_timer_event can redirect it to the grou...
| Mar 5, 5:53 pm 2008 |
| Paolo Ciarrocchi | [PATCH] checkpatch: v3 - Make some text more consinstent and...
Hi Andy,
Now messages about missing spaces or not needed spaces are in the format:
space is required
space is not required
New in v2: Fix some spelling mistakes noted by Joe Perches.
New in v3: Fix a spelling error reported by Roel Kluin
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
---
checkpatch.pl | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/checkpatch.pl b/checkpatch.pl
index 2a7cef9..432729b 100755
--- a/c...
| Mar 5, 5:39 pm 2008 |
| Pekka J Enberg | [PATCH] netfilter: replace horrible hack with ksize()
From: Pekka Enberg <penberg@cs.helsinki.fi>
There's a horrible slab abuse in net/netfilter/nf_conntrack_extend.c that
can be replaced with a call to ksize().
Cc: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
---
include/net/netfilter/nf_conntrack_extend.h | 1 -
net/netfilter/nf_conntrack_extend.c | 19 +++----------------
2 files changed, 3 insertions(+), 17 deletions(-)
Index: linux-2.6/include/net/netfilter/nf_con...
| Mar 5, 5:20 pm 2008 |
| Christoph Lameter | Re: [PATCH] netfilter: replace horrible hack with ksize()
Acked-by: Christoph Lameter <clameter@sgi.com>
I guess this should go through the netdev tree?
--
| Mar 5, 5:56 pm 2008 |
| David Miller | Re: [PATCH] netfilter: replace horrible hack with ksize()
From: Christoph Lameter <clameter@sgi.com>
It should go through Patrick McHardy and the netfilter-devel
folks, who in turn will queue it up to me and -stable if
appropriate.
--
| Mar 5, 6:19 pm 2008 |
| Pekka Enberg | Re: [PATCH] netfilter: replace horrible hack with ksize()
Hi,
Yup.
Pekka
--
| Mar 5, 5:57 pm 2008 |
| Paolo Ciarrocchi | [PATCH] checkpatch: take 2 - Make some text more consinstent...
Hi Andy,
Now messages about missing spaces or not needed spaces are in the format:
space is required
space is not required
New in v2:
Fix some spelling mistakes noted by Joe Perches.
Signed-off-by: unknown <PCIARRO@.omnitel.it>
---
checkpatch.pl | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/checkpatch.pl b/checkpatch.pl
index 2a7cef9..ba9fbe6 100755
--- a/checkpatch.pl
+++ b/checkpatch.pl
@@ -1005,7 +1005,7 @@ sub process {
...
| Mar 5, 5:10 pm 2008 |
| Roel Kluin | Mar 5, 5:23 pm 2008 | |
| Paolo Ciarrocchi | Re: [PATCH] checkpatch: take 2 - Make some text more consins...
On Wed, Mar 5, 2008 at 10:23 PM, Roel Kluin <12o3l@tiscali.nl> wrote:
spaces.
v3 almost ready...
Thanks.
Ciao,
--
Paolo
http://paolo.ciarrocchi.googlepages.com/
--
| Mar 5, 5:35 pm 2008 |
| Paolo Ciarrocchi | [PATCH] checkpatch: Make some text more consinstent and info...
Hi Andy,
Now messages about missing spaces or not needed spaces are in the format:
space is required
space is not required
Signed-off-by: Paolo Ciarrocchi <paolo.ciarrocchi@gmail.com>
---
checkpatch.pl | 30 +++++++++++++++---------------
1 files changed, 15 insertions(+), 15 deletions(-)
diff --git a/checkpatch.pl b/checkpatch.pl
index 2a7cef9..dfaa5f0 100755
--- a/checkpatch.pl
+++ b/checkpatch.pl
@@ -1005,7 +1005,7 @@ sub process {
$herecurr);
}
if ($line =~ ...
| Mar 5, 4:49 pm 2008 |
| previous day | today | next day |
|---|---|---|
| March 4, 2008 | March 5, 2008 | March 6, 2008 |
