Ping?
Is this already pulled?
I think it is enough discussed and reviewed.
Thank you,
(2013/11/13 4:20), Oleg Nesterov wrote:
> On 11/12, Srikar Dronamraju wrote:
>>
>> Okay, moving to arch_uprobe_task is fine. I probably got confused by
>> "First of all it is not really needed,"
>
> OK, this d
> Correct spelling typo in comments within mei.
>
> Signed-off-by: Masanari Iida
> ---
Acked
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Pleas
> Correct spelling typo in comments within mei/client.c
>
> Signed-off-by: Masanari Iida
Acked
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Pleas
>
> Correct spelling typo in comments and debug messages.
>
> Signed-off-by: Masanari Iida
Acked
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sun, Nov 24, 2013 at 08:07:44AM +0100, Mike Galbraith wrote:
> This patch (commit: 3a72660b07) is only slated for stable 3.12, but
> should go to 3.10/11 as well, no?
Yes, you're right, both 3.10 and 3.11 seem to have the restructuring
patch included (3.10.17 and 3.11.6 respectively), and so sh
On Nov 15, 2013, at 12:06 AM, One Thousand Gnomes wrote:
> On Thu, 14 Nov 2013 21:39:23 +0100
> Geert Uytterhoeven wrote:
>
>> To make scripts/get_maintainer.pl output something sensible.
>>
>> Signed-off-by: Geert Uytterhoeven
>> ---
>> I guess it's orphaned, just like HFS?
>
> Looking at b
On Sun, Nov 24, 2013 at 11:02 AM, Vyacheslav Dubeyko wrote:
> On Nov 15, 2013, at 12:06 AM, One Thousand Gnomes wrote:
>> On Thu, 14 Nov 2013 21:39:23 +0100
>> Geert Uytterhoeven wrote:
>>
>>> To make scripts/get_maintainer.pl output something sensible.
>>>
>>> Signed-off-by: Geert Uytterhoeven
It would be highly useful if you could explain us what kernfs is
supposed to do and why we're cheerfully waiting for it. Also given
that you touch VFS core files please Cc linux-fsdevel for those and
explain them in detail.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel
On Sat, Nov 23, 2013 at 7:58 PM, Geert Uytterhoeven
wrote:
> 8 regressions:
> + /scratch/kisskb/src/arch/sparc/kernel/kgdb_64.c: error: implicit
> declaration of function 'exception_enter'
> [-Werror=implicit-function-declaration]: => 162:7
> + /scratch/kisskb/src/arch/sparc/kernel/kgdb_64.
Hi there. :)
I've got a bit of a problem I'm hoping you can help me out with. This
isn't exactly kernel-related, although it is Linux-related. I've
posted here since LKML is generally frequented by competant people
with strong and deep understandings of various systems. :) I've sent
this to both l
On Fri 22-11-13 23:52:18, Al Viro wrote:
> On Fri, Nov 22, 2013 at 10:11:56PM +0100, Jan Kara wrote:
> > Hi,
> >
> > On Wed 13-11-13 16:11:47, Dave Jones wrote:
> > > here's another one..
> > >
> > >
> > > =
> > > [ INFO: possible recursive locking d
Hi Henrik & Guenther,
via commit 5f4513864304672e6ea9eac60583eeac32e679f2 the following
code was added:
diff --git a/drivers/hwmon/applesmc.c b/drivers/hwmon/applesmc.c
index 62c2e32..98814d1 100644
--- a/drivers/hwmon/applesmc.c
+++ b/drivers/hwmon/applesmc.c
@@ -525,16 +525,25 @@ static int appl
Hi Michele,
> The issue Chris has seen in Fedora on one MacBookPro4,1
> (https://bugzilla.redhat.com/show_bug.cgi?id=1033414) is that this
> machine returns a huge number from read_register_count() so now we will
> try to allocate an insane amount of memory and we will barf:
> [8.603053] apple
Hello Rafael,
On 11/22/2013 11:08 PM, Rafael J. Wysocki wrote:
> On Friday, November 22, 2013 10:36:23 PM Francis Moreau wrote:
>> On 11/22/2013 01:54 PM, Rafael J. Wysocki wrote:
>>> On Friday, November 22, 2013 10:57:25 AM Francis Moreau wrote:
Le 22/11/2013 08:43, Francis Moreau a écrit :
On Friday 22 November 2013 11:08 PM, Santosh Shilimkar wrote:
> On Thursday 21 November 2013 12:07 PM, Nori, Sekhar wrote:
>> On 11/14/2013 8:06 PM, Santosh Shilimkar wrote:
>>> On Thursday 14 November 2013 05:53 AM, Nori, Sekhar wrote:
On Wednesday 13 November 2013 07:44 PM, Santosh Shilimkar
On Tuesday 19 November 2013 14:32:13 Pavel Machek wrote:
> On Tue 2013-11-19 11:18:05, Pali Rohár wrote:
> > This patch will register bq24150a charger in RX-51 board
> > data.
> >
> > So finally charging battery on Nokia N900 (RX-51) working
> > automatically without any proprietary Nokia bits in
It was initially a single patch that Oleg sent me a few weeks ago. Thinking
about it I think it may need a stable backport even though it doesn't look
very dangerous, but just in case.
So I've splitted the patch in 4 different parts because it may need
backporting on different tree version for ea
From: Oleg Nesterov
arch_check_bp_in_kernelspace() tries to avoid the overflow and does 2
TASK_SIZE checks but it needs OR, not AND. Consider va = TASK_SIZE -1
and len = 2 case.
Note: TASK_SIZE doesn't look right at least on x86, I think it should
be replaced by TASK_SIZE_MAX.
Signed-off-by: Ol
From: Oleg Nesterov
arch_check_bp_in_kernelspace() tries to avoid the overflow and does 2
TASK_SIZE checks but it needs OR, not AND. Consider va = TASK_SIZE -1
and len = 2 case.
Signed-off-by: Oleg Nesterov
Fixes: 478fcb2cdb2351dcfc3fb23f42d76f4436ee4149
Cc:
Signed-off-by: Frederic Weisbecker
From: Oleg Nesterov
arch_check_bp_in_kernelspace() tries to avoid the overflow and does 2
TASK_SIZE checks but it needs OR, not AND. Consider va = TASK_SIZE -1
and len = 2 case.
Signed-off-by: Oleg Nesterov
Fixes: 09a072947791088b88ae15111cf68fc5aaaf758d
Cc:
Signed-off-by: Frederic Weisbecker
From: Oleg Nesterov
arch_check_bp_in_kernelspace() tries to avoid the overflow and does 2
TASK_SIZE checks but it needs OR, not AND. Consider va = TASK_SIZE -1
and len = 2 case.
Signed-off-by: Oleg Nesterov
Fixes: f81ef4a920c8e1af75adf9f15042c2daa49d3cb3
Cc:
Signed-off-by: Frederic Weisbecker
On Sun, Nov 24, 2013 at 06:37:47PM +1100, dt.ta...@gmail.com wrote:
> From: Daniel Tang
>
> Changelog v2:
> * Rename ci13xxx to ci_hdrc
> * Fixed alignment issues
>
> The USB controller in TI-NSPIRE calculators are based off either Freescale's
> USB OTG controller or the USB controller found i
On Sun, Nov 24, 2013 at 3:35 AM, Yuhong Bao wrote:
> I read this: http://hardware.slashdot.org/comments.pl?sid=3102545&cid=41270883
> Makes me wonder what would happen if something similar was tried with EFI or
> ACPI?
the EOMA68 project is unique in that it is a mass-volume *modular*
architect
On Sat 2013-11-23 22:25:48, Heiko Stübner wrote:
> Hi Laxman,
>
> Am Mittwoch, 20. November 2013, 10:54:10 schrieb Laxman Dewangan:
> > > I may be blind, but where get the early-irqs resumed in the error
> > > path of dpm_suspend_noirq?
> > >
> > > When a suspend_noirq callback returns an error,
max17042 now uses regmap interface but does not enable config option. This
patch fixes the following build errors:
drivers/power/max17042_battery.c:661:15: error: variable
‘max17042_regmap_config’ has initializer but incomplete type
drivers/power/max17042_battery.c:662:2: error: unknown field ‘r
Good day,
I have a business proposal which will be of
great benefit to you. Contact me for details
through:
Email: wa60...@qq.com
I await your prompt response.
Thanks.
wa60...@qq.com
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord.
Hi!
(Oops, it seems that this thread uses Rafael's old address, and that
it bounces, added address from maintainers to cc.)
Pavel
On Sat 2013-11-23 22:25:48, Heiko Stübner wrote:
> Hi Laxman,
>
> Am Mittwoch, 20. November 2013, 10:
On Nov 24, 2013, at 12:15 PM, Geert Uytterhoeven wrote:
> Hence Orphan doesn't mean there are no active users, only that there's no
> active
> maintainter listed.
>
> If you want to become the maintainer for hfs+, I'm happy to send a v2
> of the patch,
> adding you as the maintainer, with statu
Free 'ctx_str' when necessary.
Signed-off-by: Geyslan G. Bem
---
security/selinux/xfrm.c | 11 +++
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/security/selinux/xfrm.c b/security/selinux/xfrm.c
index a91d205..cf79a45 100644
--- a/security/selinux/xfrm.c
+++ b/security/se
On 11/23/2013 07:29 PM, One Thousand Gnomes wrote:
7) Rescan line discipline buffer when changing from non-canonical to canonical
mode. The real problem with this approach (besides the inefficiency) is that
this
solution could break some (admittedly unknown) program that contrived to
exchange
d
In order to remove the following ugly message:
BUG: mapping for 0x at 0xff00 out of vmalloc space
the iotable mappings should be re-located inside the vmalloc
region. Such move was introduced at commit:
commit 0536bdf33faff4d940ac094c77998cfac368cfff
Author: Nicolas Pitre
Date:
On Sun, Nov 24, 2013 at 09:36:11AM -0300, Ezequiel Garcia wrote:
> In order to remove the following ugly message:
>
> BUG: mapping for 0x at 0xff00 out of vmalloc space
>
> the iotable mappings should be re-located inside the vmalloc
> region. Such move was introduced at commit:
>
Hi:
As we talked in mail before, please check my patch as below:
From: Qi Wang
nor_erase_prepare() will be called before erase a NOR flash, it will program '0'
into a block to mark this block. But program data into a erasure interrupted
block
can cause program timtout(several minutes at most) e
On Sun, Nov 24, 2013 at 10:39:20AM +0100, Francis Moreau wrote:
> This looks like it was a good idea.
>
> The kernel now outputs the following traces after resuming.
>
> [ 26.973928] WARNING: CPU: 0 PID: 4 at lib/debugobjects.c:260
> debug_print_object+0x83/0xa0()
> [ 26.973932] ODEBUG: free
On Tue, Nov 19, 2013 at 04:04:01PM +, Charles Keepax wrote:
> From: Mark Brown
Applied, thanks.
signature.asc
Description: Digital signature
On Tue, Nov 19, 2013 at 04:04:02PM +, Charles Keepax wrote:
> Add support for the ISRCs that matches the current support on the w5102.
Applied, thanks.
signature.asc
Description: Digital signature
On Sun, Nov 24, 2013 at 11:32:49AM +0100, Frederic Weisbecker wrote:
> From: Oleg Nesterov
>
> arch_check_bp_in_kernelspace() tries to avoid the overflow and does 2
> TASK_SIZE checks but it needs OR, not AND. Consider va = TASK_SIZE -1
> and len = 2 case.
>
> Note: TASK_SIZE doesn't look right
On Fri, Nov 22, 2013 at 12:18:01PM -0500, Dan Streetman wrote:
> On Fri, Nov 22, 2013 at 2:38 AM, Vladimir Murzin wrote:
> > On Wed, Nov 20, 2013 at 12:52:47PM -0500, Dan Streetman wrote: > On Wed, Nov
> > 20, 2013 at 12:33 PM, Vladimir Murzin wrote: > > Hi
> > Dan!
> >> >
> >> > On Wed, Nov 20,
Hello,
On Sun, Nov 24, 2013 at 01:16:02AM -0800, Christoph Hellwig wrote:
> It would be highly useful if you could explain us what kernfs is
> supposed to do and why we're cheerfully waiting for it. Also given
Oops, sorry about that. It was explained in earlier series but I
probably should carr
Core sysfs implementation will be separated into kernfs so that it can
be used by other non-kobject users.
This patch creates fs/kernfs/ directory and makes boilerplate changes.
kernfs interface will be directly based on sysfs_dirent and its
forward declaration is moved to include/linux/kernfs.h w
We're in the process of separating out core sysfs functionality into
kernfs which will deal with sysfs_dirents directly. This patch
rearranges mount path so that the kernfs and sysfs parts are separate.
* As sysfs_super_info won't be visible outside kernfs proper,
kernfs_super_ns() is added to
(cc'ing Gwendal, hi!)
On Sun, Nov 24, 2013 at 02:09:09AM +0100, Rafael J. Wysocki wrote:
> On Sunday, November 24, 2013 12:36:03 AM Rafael J. Wysocki wrote:
> > On Saturday, November 23, 2013 03:07:01 PM Greg Kroah-Hartman wrote:
> > > On Sun, Nov 24, 2013 at 12:12:59AM +0100, Rafael J. Wysocki wr
Hello.
On 24-11-2013 3:28, Santosh Shilimkar wrote:
Building ARM with NO_BOOTMEM generates below warning. Using min_t
Where is that below? :-)
to find the correct alignment avoids the warning.
Cc: Tejun Heo
Cc: Andrew Morton
Signed-off-by: Santosh Shilimkar
WBR, Sergei
--
To un
At a 32 bit guest UML with current kernel git tree I putted a printk
into that function :
void truncate_inode_pages_range(struct address_space *mapping,
loff_t lstart, loff_t lend)
{
...
cond_resched();
index++;
prin
Hi James,
Linus has already reverted the trusted keyring support for IMA patches.
These patches are re-based on -rc1.
The following changes since commit 4c1cc40a2d49500d84038ff751bc6cd183e729b5:
Revert "KEYS: verify a certificate is signed by a 'trusted' key" (2013-11-23
16:38:17 -0800)
are
[1.] One line summary of the problem:
Linux kernel 3.12.1-1 breaks SCP and samba file transfers,
specifically reading access.
[2.] Full description of the problem/report:
My computer is hosting SCP and samba which serves media files (movies)
for my LAN. everything was working fine until I upgraded
On Sat, 23 Nov 2013 21:01:56 -0500
Peter Hurley wrote:
> On 11/23/2013 07:26 PM, One Thousand Gnomes wrote:
> > On Fri, 22 Nov 2013 10:59:23 -0500
> > Peter Hurley wrote:
> >
> >> Distinguish if caller is n_tty_poll() or n_tty_read(), and
> >> set the read/wakeup threshold accordingly.
> >>
> >>
Hi,
On Fri, Nov 08, 2013 at 11:11:23PM +0100, Sebastian Reichel wrote:
> This is the seventh iteration of DT support for the TWL4030
> power button.
Dmitry, can you add this patchset to your queue?
It got no further comments in two weeks.
-- Sebastian
signature.asc
Description: Digital signat
Hi,
regarding https://bugs.launchpad.net/ubuntu/+source/syslinux/+bug/930447
Grub2 "accidentally" heals a problem for systems which cannot boot PAE enabled
kernels. This happens because grub2 apparently jumps into the kernel at a
different entry point, so CPUID checking (check for PAE for ex
On Thu, Nov 14, 2013 at 02:53:08PM +, Srinivas Kandagatla wrote:
> This patch fixes a typo for device_type property of phy node.
> This can work as of today but once a checks are added in generic code
> this typo will stop phy from working.
>
> Signed-off-by: Srinivas Kandagatla
> ---
> .../
Hi,
This patchset adds DT support for the bq2415x charger, which is used in the
Nokia N900. The changes depend on Pali Rohár's "[PATCH v2 0/3] Add support for
charging battery in Nokia RX-51" patchset [0].
[0] https://lkml.org/lkml/2013/11/19/106
-- Sebastian
Sebastian Reichel (3):
power_supp
Hello,
seems that X509_CERTIFICATE_PARSER depends on SYSTEM_TRUSTED_KEYRING.
--- linux-3.13/crypto/asymmetric_keys/Kconfig.old 2013-11-24
17:48:22.269152229 +0100
+++ linux-3.13/crypto/asymmetric_keys/Kconfig 2013-11-24 17:48:25.120150577
+0100
@@ -29,7 +29,7 @@
config X509_CERTIFICA
This adds DT support to the bq2415x driver.
Signed-off-by: Sebastian Reichel
---
drivers/power/bq2415x_charger.c | 72 +
1 file changed, 52 insertions(+), 20 deletions(-)
diff --git a/drivers/power/bq2415x_charger.c b/drivers/power/bq2415x_charger.c
index
Add method to get power supply by device tree phandle.
Signed-off-by: Sebastian Reichel
---
drivers/power/power_supply_core.c | 24
include/linux/power_supply.h | 2 ++
2 files changed, 26 insertions(+)
diff --git a/drivers/power/power_supply_core.c
b/drivers/pow
Add devicetree binding documentation for bq2415x charger.
Signed-off-by: Sebastian Reichel
---
.../devicetree/bindings/power/bq2415x.txt | 43 ++
1 file changed, 43 insertions(+)
create mode 100644 Documentation/devicetree/bindings/power/bq2415x.txt
diff --git a/Do
Hi Chris,
> Well, it seems to be a another one off event. It's the same hardware as
before, and it was booting from a USB stick containing Fedora 20 final test
candidate 2 which uses kernel 3.11.8. An immediate reboot did not reproduce the
problem, nor multiple subsequent reboots. I think I previo
On Thu, Nov 14, 2013 at 02:54:59PM +, Srinivas Kandagatla wrote:
> This patch fixes a typo for device_type property of phy node.
> This can work as of today but once a checks are added in generic code
> this typo will stop phy from working.
>
> Signed-off-by: Srinivas Kandagatla
> ---
> arch
On Fri, Nov 15, 2013 at 03:20:24PM +0100, Sebastian Hesselbarth wrote:
> SDIO controllers found on Marvell Kirkwood 6281/6282 SoCs require
> pins to be muxed by pinctrl. As there is only one sane pinctrl
> setting for this, provide default pinctrl properties to the controller
> nodes.
>
> Signed-o
Hi,
On Tue, Nov 19, 2013 at 11:18:04AM +0100, Pali Rohár wrote:
> This patch removing set_mode_hook function from board data and replacing it
> with
> new string variable of notifier power supply device. After this change it is
> possible to add DT support because driver does not need specific bo
On Nov 24, 2013, at 9:57 AM, Henrik Rydberg wrote:
> Hi Chris,
>
>> Well, it seems to be a another one off event. It's the same hardware as
> before, and it was booting from a USB stick containing Fedora 20 final test
> candidate 2 which uses kernel 3.11.8. An immediate reboot did not reproduce
Hi,
On Tue, Nov 19, 2013 at 11:18:03AM +0100, Pali Rohár wrote:
> This patch adds a notifier chain to the power_supply.
> This notifier helps drivers in other subsystem to listen to
> changes in power supply subsystem. This would help to take some
> actions in those drivers on changing the power s
On Fri, Nov 15, 2013 at 03:22:32PM +0100, Sebastian Hesselbarth wrote:
> Non-DT irq handlers were working through irq causes from most-significant
> to least-significant bit, while DT irqchip driver does it the other way
> round. This revealed some more HW issues on Kirkwood peripheral IP, where
>
On Fri, Nov 15, 2013 at 03:22:33PM +0100, Sebastian Hesselbarth wrote:
> SDIO controllers found on Marvell Kirkwood SoCs seem to cause a late,
> spurious irq although all interrupts have been disabled. This irq
> doesn't do any harm, neither to HW nor driver. To avoid some
> "unexpected irq" warnin
On Fri, Nov 15, 2013 at 03:22:34PM +0100, Sebastian Hesselbarth wrote:
> mvsdio reports method of card detection with dev_notice, while for
> removable cards it may be sane, for non-removable cards it is not.
> Also, as the user cannot do anything about it, silence the message
> by reducing it from
If I use sendfile() to send to a accept()ed AF_ALG socket set up for
"hash", I get the wrong
answer, if I read() and then write() I get the right answer. None of
the system calls return an error.
---
Shawn Landden
+1 360 389 3001 (SMS preferred)
--
To unsubscribe from this list: send the line "unsu
Hi,
> > > I'd suggest just simple "autorepeat", so that we get rid of ugly
> > > double-negation.
> > The idea was that majority of setups want autorepeat so in the absence
> > of the property autorepeat is turned on.
>
> I see... but autorepeat on by default makes sense on devices that are
> us
Hi
On Tue, Nov 19, 2013 at 11:18 AM, Pali Rohár wrote:
> This patch removing set_mode_hook function from board data and replacing it
> with
> new string variable of notifier power supply device. After this change it is
> possible to add DT support because driver does not need specific board
> f
If I use sendfile() to send to a accept()ed AF_ALG socket set up for
"hash", I get the wrong
answer, if I read() and then write() I get the right answer. None of
the system calls return an error.
test case attached.
--
---
Shawn Landden
+1 360 389 3001 (SMS preferred)
#include
#include
#incl
On Nov 24, 2013, at 2:44 AM, Henrik Rydberg wrote:
> Hi Michele,
>
>> The issue Chris has seen in Fedora on one MacBookPro4,1
>> (https://bugzilla.redhat.com/show_bug.cgi?id=1033414) is that this
>> machine returns a huge number from read_register_count() so now we will
>> try to allocate an in
Today in the perfevents subsystem it looks like DTLB/ITLB misses are
implemented as HW counter only.
On some processors, like PowerPC 8xx, there is no counter for that.
However DTLB/ITLB misses are handled as exceptions via software, so we
have an opportunity to implement a SW counter for that.
On Fri, 22 Nov 2013, Tejun Heo wrote:
> Hello, Hugh.
>
> I applied the following patch to cgroup/for-3.13-fixes.
Looks good, thanks a lot.
> For longer
> term, I think it'd be better to pull workqueue init before cgroup one
> but this one should be easier to backport for now.
Yes, that's the r
On Sunday 24 November 2013 18:00:00 Sebastian Reichel wrote:
> Hi,
>
> On Tue, Nov 19, 2013 at 11:18:04AM +0100, Pali Rohár wrote:
> > This patch removing set_mode_hook function from board data
> > and replacing it with new string variable of notifier power
> > supply device. After this change it
On Sunday 24 November 2013 18:18:03 Michael Trimarchi wrote:
> Hi
>
> On Tue, Nov 19, 2013 at 11:18 AM, Pali Rohár
wrote:
> > This patch removing set_mode_hook function from board data
> > and replacing it with new string variable of notifier power
> > supply device. After this change it is poss
On Sun, Nov 24, 2013 at 08:01:16PM +0100, Pali Rohár wrote:
> > I'm wondering if the watchdog thread should check some values,
> > like e.g. battery temperature. It should stop charging the
> > battery if some critical battery temperature threshold is
> > reached.
>
> For checking battery temperat
On 11/03/2013 01:43:14 PM, Theodore Ts'o wrote:
On Sun, Nov 03, 2013 at 02:07:56PM -0500, Jason Cipriani wrote:
>
> There was a bigger question hidden behind the context there that I'm
> still wondering about: Are these ioctl interfaces specified and
> documented somewhere? From what I've seen, a
On Sunday 24 November 2013 20:26:09 Sebastian Reichel wrote:
> On Sun, Nov 24, 2013 at 08:01:16PM +0100, Pali Rohár wrote:
> > Currently on Maemo 5 this is handled in userspace (with open
> > source dsme daemon).
>
> I assume it currently also takes care of the bq2415x watchdog?
> That means if th
On Sunday, November 24, 2013 10:39:20 AM Francis Moreau wrote:
> Hello Thomas
>
> On 11/22/2013 11:27 PM, Thomas Gleixner wrote:
> > On Fri, 22 Nov 2013, Rafael J. Wysocki wrote:
> >> On Friday, November 22, 2013 10:36:23 PM Francis Moreau wrote:
> >>> Ok, I've finally managed to find out the bad
On Sun, Nov 24, 2013 at 08:41:46PM +0100, Pali Rohár wrote:
> On Sunday 24 November 2013 20:26:09 Sebastian Reichel wrote:
> > On Sun, Nov 24, 2013 at 08:01:16PM +0100, Pali Rohár wrote:
> > > Currently on Maemo 5 this is handled in userspace (with open
> > > source dsme daemon).
> >
> > I assume
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
On 11/19/13 05:48, NeilBrown wrote:
> On Tue, 19 Nov 2013 02:49:38 +0100 Sebastian Reichel wrote:
>
>> Hi,
>>
>> On Tue, Nov 19, 2013 at 11:30:13AM +1100, NeilBrown wrote:
>>> No new configuration, just a 'compatible' string and documentation.
>>
>
On Friday, November 22, 2013 12:39:24 PM Stephen Warren wrote:
> On 11/22/2013 05:52 AM, Viresh Kumar wrote:
> > On 22 November 2013 18:07, Rafael J. Wysocki wrote:
> >> On Friday, November 22, 2013 04:59:49 PM Viresh Kumar wrote:
> >>> Some platforms might want to change frequency before suspendi
Disabling compiler optimizations can be fragile, since a new
optimization could be added to -O0 or -Os that breaks the assumptions
the code is making.
Instead of disabling compiler optimizations, use a dummy inline assembly
(based on RELOC_HIDE) to block the problematic kinds of optimization,
whil
On 11/22/2013 08:22 PM, Uwe Kleine-König wrote:
On Fri, Nov 22, 2013 at 05:31:46PM +0100, Daniel Lezcano wrote:
On 11/22/2013 05:16 PM, Thierry Reding wrote:
On Sat, Oct 19, 2013 at 12:49:48AM +0200, Thierry Reding wrote:
When booting a recent kernel on ARM with OF_DYNAMIC enabled, the kernel
On Fri, 22 Nov 2013 17:50:35 -0800, Tony Lindgren wrote:
> * Tony Lindgren [131122 17:16]:
> > * Tony Lindgren [131122 17:09]:
> > > * Russell King - ARM Linux [131122 16:56]:
> > > > On Fri, Nov 22, 2013 at 04:43:35PM -0800, Tony Lindgren wrote:
> > > > > + /* See of_device_resourc
On Sun, 24 Nov 2013 17:04:52 +1000, Peter Crosthwaite
wrote:
> On Wed, Nov 13, 2013 at 4:14 PM, Grant Likely wrote:
> > On Wed, 13 Nov 2013 09:17:01 +1000, Peter Crosthwaite
> > wrote:
> >> It's going to get a little verbose once you start making multiple
> >> connections as you need one mux p
On Fri, 22 Nov 2013 16:43:35 -0800, Tony Lindgren wrote:
> Currently we get the following kind of errors if we try to use
> interrupt phandles to irqchips that have not yet initialized:
>
> irq: no irq domain found for /ocp/pinmux@48002030 !
> WARNING: CPU: 0 PID: 1 at drivers/of/platform.c:171
On 06:34 Fri 22 Nov , Stefan Kristiansson wrote:
> This adds support for the VGA/LCD core available from OpenCores:
> http://opencores.org/project,vga_lcd
>
> The driver have been tested together with both OpenRISC and
> ARM (socfpga) processors.
>
> Signed-off-by: Stefan Kristiansson
Tomi
heres a version of the test case that builds.
Sorry about that.
On Sun, Nov 24, 2013 at 9:21 AM, Shawn Landden wrote:
> If I use sendfile() to send to a accept()ed AF_ALG socket set up for
> "hash", I get the wrong
> answer, if I read() and then write() I get the right answer. None of
> the
If you build
https://kernel.googlesource.com/pub/scm/network/connman/connman/+/0.80/tools/alg-test.c
from the connman source code and compare the output to coreutils
sha1sum you can see the problem.
shawn@debian-T61:~/git/test$ make connman_afalg
cc connman_afalg.c -o connman_afalg
shawn@de
Hi Linux kernel developer!
I have a question about linux kernel. I installed ubuntu 13.10 and I
want to install mac kernel to it because I prefer the wallpapers in my
Dad's macbook pro. I heard they has different kernels so Id like to
install mac kernel to ubuntu. PLease send me the .exe file beca
After my intensive search, I understand that you share same last name with our
late client who passed on few years ago, and am seeking your consent to present
you as heir to his estate estimated 30.5mUSD.if you interest, please send your
cell/phone, fax and names, for more details. Mr. David Gar
On Sun, 24 Nov 2013, Mimi Zohar wrote:
> Hi James,
>
> Linus has already reverted the trusted keyring support for IMA patches.
> These patches are re-based on -rc1.
>
> The following changes since commit 4c1cc40a2d49500d84038ff751bc6cd183e729b5:
>
> Revert "KEYS: verify a certificate is signe
After my intensive search, I understand that you share same last name with our
late client who passed on few years ago, and am seeking your consent to present
you as heir to his estate estimated 30.5mUSD.if you interest, please send your
cell/phone, fax and names, for more details. Mr. David Gar
On Sun, Nov 24, 2013 at 12:41:25PM +, Russell King - ARM Linux wrote:
> On Sun, Nov 24, 2013 at 09:36:11AM -0300, Ezequiel Garcia wrote:
> > In order to remove the following ugly message:
> >
> > BUG: mapping for 0x at 0xff00 out of vmalloc space
> >
> > the iotable mappings sho
The man page of /proc fs only offers defination of the first column of "intr"
in /proc/stat. But lack of the explaination of other columns. Same issue for
the softirq in /proc/stat! How can i identify which interrupts the numbers
related to respectively?
[root@hw092 proc]# cat /proc/stat
cpu
On Sun, 24 Nov 2013, Ezequiel Garcia wrote:
> In order to remove the following ugly message:
>
> BUG: mapping for 0x at 0xff00 out of vmalloc space
>
> the iotable mappings should be re-located inside the vmalloc
> region. Such move was introduced at commit:
>
> commit 0536bdf33fa
On Sat, Nov 23 2013, Kent Overstreet wrote:
> It was being open coded in a few places.
Thanks, applied (with Neils ack).
--
Jens Axboe
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at http://
On Sat, 23 Nov 2013 11:22:05 +0800 fengguang...@intel.com wrote:
> Shaohua,
>
> FYI, we are still seeing this bug.. dmesg attached.
Thanks for the report. However the dmesg you attached doesn't mention:
kernel BUG at drivers/md/raid5.c:693!
at all. It is quite different.
The "BUG" it r
From: Philip J Kelleher
This patch contains a software workaround for a firmware bug that
can cause the pcie adapter to train to a width below the desired
width of x8.
It will reset the adapter 3 times before the driver gives up and
informs the user that the link width has been trained to someth
This code used to have its own lru cache pagevec up until a0b8cab3
("mm: remove lru parameter from __pagevec_lru_add and remove parts of
pagevec API"). Now it's just add_to_page_cache() followed by
lru_cache_add(), might as well use add_to_page_cache_lru() directly.
Signed-off-by: Johannes Weiner
Page cache radix tree slots are usually stabilized by the page lock,
but shmem's swap cookies have no such thing. Because the overall
truncation loop is lockless, the swap entry is currently confirmed by
a tree lookup and then deleted by another tree lookup under the same
tree lock region.
Use ra
1 - 100 of 194 matches
Mail list logo