John David Anglin | 1 Mar 2012 01:48

Re: Happy New Year PARISC (take 2)

On 28-Feb-12, at 5:56 PM, Domenico Andreoli wrote:

> I applied this patch to v3.3-rc5 and then tried to build eglibc  
> 2.13-27,
> unsuccessfully. Do you have any patch for it?

I should have remembered.  You have to remove/move the expected  
results file
(expected-results-hppa-linux-gnu-libc) out of the way -- it hasn't  
been updated.
Otherwise, the build will fail in the testsuite.

Dave
--
John David Anglin	dave.anglin <at> bell.net

--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Linus Torvalds | 4 Mar 2012 01:17
Gravatar

Re: [GIT PULL] parisc fixes for 3.3-rc5

On Sat, Mar 3, 2012 at 3:44 PM, James Bottomley
<James.Bottomley <at> hansenpartnership.com> wrote:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git parisc-fixes

"fatal: Couldn't find remote ref parisc-fixes"

Forgot to push?

                Linus
--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

James Bottomley | 4 Mar 2012 01:31

Re: [GIT PULL] parisc fixes for 3.3-rc5

On Sat, 2012-03-03 at 16:17 -0800, Linus Torvalds wrote:
> On Sat, Mar 3, 2012 at 3:44 PM, James Bottomley
> <James.Bottomley <at> hansenpartnership.com> wrote:
> >
> > git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi-rc-fixes-2.6.git parisc-fixes
> 
> "fatal: Couldn't find remote ref parisc-fixes"
> 
> Forgot to push?

Erm, no, forgot to give the URL of the right tree.  Sorry about that,
try this instead:

git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git parisc-fixes

James

--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

John David Anglin | 4 Mar 2012 23:14

Re: HPPA64: Cannot write to ext4 filesystems with files > 28672 byte

On 27-Feb-12, at 9:55 AM, Rolf Eike Beer wrote:

> Recent kernels (>3.x) fail when writing to ext4 filesystems with the
> message "file too large". The critical size is 28672 byte (7*2^12).  
> This
> has been traced down to ext4_max_size() by Tobias Ulmer, which looks  
> like
> this:

Fixed in GCC source trees (> 4.4).  Problem was incorrect shift caused
by truncation to int.

The following instruction was incorrect:

  50:   d7 9f 12 1d     depdi,z,* -1,sar,3,ret0

The length operand was incorrectly calculated.

Dave
--
John David Anglin	dave.anglin <at> bell.net

--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Rolf Eike Beer | 5 Mar 2012 20:02
Picon

Re: HPPA64: Cannot write to ext4 filesystems with files > 28672 byte

Am Sonntag 04 März 2012, 17:14:14 schrieb John David Anglin:
> On 27-Feb-12, at 9:55 AM, Rolf Eike Beer wrote:
> > Recent kernels (>3.x) fail when writing to ext4 filesystems with the
> > message "file too large". The critical size is 28672 byte (7*2^12).
> > This
> > has been traced down to ext4_max_size() by Tobias Ulmer, which looks
> > like
> 
> > this:
> Fixed in GCC source trees (> 4.4).  Problem was incorrect shift caused
> by truncation to int.
> 
> The following instruction was incorrect:
> 
>   50:   d7 9f 12 1d     depdi,z,* -1,sar,3,ret0
> 
> The length operand was incorrectly calculated.

As I said ;)

Linux pioneer 3.2.9 #1 SMP Mon Mar 5 13:17:55 CET 2012 parisc64 PA8800 (Mako) 
9000/785/C8000 GNU/Linux

And I can now properly use the ext4 filesystems again, yay!

Thanks, excellent work!

Eike
Lin Huang | 6 Mar 2012 02:01

Proposal

There is a fund i need you to claim.Reply for details
--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Lin Huang | 6 Mar 2012 02:38

Proposal

There is a fund i need you to claim.Reply for details
--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Paul Gortmaker | 7 Mar 2012 02:44
Favicon

parisc: fix lib/bitmap.c in linux-next

I'm glad I pushed to fix parisc in linux-next, since now I can tell
when I've broken it.  :)  [but hey it was a good five days while it
lasted though!]

For those of you following parisc in linux-next, as per here:

    http://kisskb.ellerman.id.au/kisskb/target/2059/

the fix is a trivial include that seems specific to parisc:

diff --git a/lib/bitmap.c b/lib/bitmap.c
index e255bfb..0b39614 100644
--- a/lib/bitmap.c
+++ b/lib/bitmap.c
 <at>  <at>  -11,6 +11,8  <at>  <at> 
 #include <linux/bitmap.h>
 #include <linux/bitops.h>
 #include <linux/bug.h>
+#include <linux/thread_info.h>
+
 #include <asm/uaccess.h>

and I'll have this in the module-3.4 tree in linux-next tomorrow.

Thanks,
Paul.
--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
(Continue reading)

Kautuk Consul | 20 Mar 2012 14:26
Picon

[PATCH 18/20] parisc/mm/fault.c: Port OOM changes to do_page_fault

Commit d065bd810b6deb67d4897a14bfe21f8eb526ba99
(mm: retry page fault when blocking on disk transfer) and
commit 37b23e0525d393d48a7d59f870b3bc061a30ccdb
(x86,mm: make pagefault killable)

The above commits introduced changes into the x86 pagefault handler
for making the page fault handler retryable as well as killable.

These changes reduce the mmap_sem hold time, which is crucial
during OOM killer invocation.

Port these changes to parisc.

Signed-off-by: Kautuk Consul <consul.kautuk <at> gmail.com>
---
 arch/parisc/mm/fault.c |   30 +++++++++++++++++++++++++-----
 1 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/arch/parisc/mm/fault.c b/arch/parisc/mm/fault.c
index 18162ce..f247a34 100644
--- a/arch/parisc/mm/fault.c
+++ b/arch/parisc/mm/fault.c
 <at>  <at>  -175,10 +175,12  <at>  <at>  void do_page_fault(struct pt_regs *regs, unsigned long code,
 	struct mm_struct *mm = tsk->mm;
 	unsigned long acc_type;
 	int fault;
+	unsigned int flags = FAULT_FLAG_ALLOW_RETRY | FAULT_FLAG_KILLABLE;

 	if (in_atomic() || !mm)
 		goto no_context;
(Continue reading)

Cheung Leung | 19 Mar 2012 05:30
Favicon

URGENT RESPONSE


DEAR SIR,
   Your funds are ready to be transferred to you, please which account should
we use to transfer the funds, reply me Immediately so that we can start
the transfer process immediately.Thank you.
 Best regards
 CHEUNG LEUNG

--
To unsubscribe from this list: send the line "unsubscribe linux-parisc" in
the body of a message to majordomo <at> vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Gmane