Re: NFS: file too large

2011-01-13 Thread Daniel Braniss
I'm getting 'File too large' when copying via NFS(v3, tcp/udp) a file that is larger than 1T. The server is ZFS which has no problem with large files. Is this fixable? As I understand it, there is no FreeBSD VFSop that returns the maximum file size supported. As such, the NFS

Re: Unable to compile drm.ko on powerpc

2011-01-13 Thread Nathan Whitehorn
AGP is derived from PCI, so AGP devices show up on the PCI bus. All the AGP kernel module does is provide hooks to manipulate some advanced features of the bus, mostly for the benefit of drm. -Nathan On 01/12/11 19:24, Super Bisquit wrote: My graphics port is agp and not pci. It's a

What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Ryan Stone
I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the problem is that gcc is issuing SSE instructions(in my case, a movdqa) that assume that the stack will be aligned to a 16-byte boundary.

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Alexander Best
On Thu Jan 13 11, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the problem is that gcc is issuing SSE instructions(in my case, a movdqa) that assume that the stack

HotPar '11 Submission Deadline: January 16, 2011

2011-01-13 Thread Lionel Garth Jones
We are writing to remind you that the submission deadline for the 3rd USENIX Workshop on Hot Topics in Parallelism (HotPar '11) is quickly approaching. Please register your paper (submit your abstract) by Sunday, January 16, 2011, at 11:59 p.m. PST. http://www.usenix.org/hotpar11/cfpb/ HotPar

Re: A question about WARNING: attempt to domain_add(xyz) after domainfinalize()

2011-01-13 Thread Stefan Esser
Am 13.01.2011 06:42, schrieb Julian Elischer: On 1/12/11 5:26 AM, Svatopluk Kraus wrote: Hi, I'd like to add a new network domain into kernel (and never remove it) from loadable module. In fact, I did it, but I got following warning from domain_add(): WARNING: attempt to domain_add(xyz)

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Kostik Belousov
On Thu, Jan 13, 2011 at 12:19:00PM -0500, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the problem is that gcc is issuing SSE instructions(in my case, a movdqa)

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Joerg Sonnenberger
On Thu, Jan 13, 2011 at 12:19:00PM -0500, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the problem is that gcc is issuing SSE instructions(in my case, a movdqa)

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Kostik Belousov
On Thu, Jan 13, 2011 at 10:57:15PM +0100, Joerg Sonnenberger wrote: On Thu, Jan 13, 2011 at 12:19:00PM -0500, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the

Re: Unable to compile drm.ko on powerpc

2011-01-13 Thread Super Bisquit
I see this Identifier Card0 Driver ati VendorName ATI Technologies Inc BoardName Rage 128 PR/PRO AGP 4x TMDS BusID PCI:0:16:0 From the October 2008 ppc mailing list. Am I going to need to configure X with AGP 4X in the board name section? The

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Ryan Stone
On Thu, Jan 13, 2011 at 3:28 PM, Kostik Belousov kostik...@gmail.com wrote: Please give this a try. Your patch resolved the issue for me. Thanks for the quick reply. ___ freebsd-hackers@freebsd.org mailing list

Re: NFS: file too large

2011-01-13 Thread Rick Macklem
I'm getting 'File too large' when copying via NFS(v3, tcp/udp) a file that is larger than 1T. The server is ZFS which has no problem with large files. Is this fixable? As I understand it, there is no FreeBSD VFSop that returns the maximum file size supported. As

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Warner Losh
On 01/13/2011 13:28, Kostik Belousov wrote: On Thu, Jan 13, 2011 at 12:19:00PM -0500, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's been crashing during startup with a SIGBUS. It turns out that the problem is that gcc is

Re: NFS: file too large

2011-01-13 Thread Matthew Dillon
:Try editting line #1226 of sys/nfsclient/nfs_vfsops.c, where :it sets nm_maxfilesize = (u_int64_t)0x8000 * DEV_BSIZE - 1; and make it :something larger. : :I have no idea why the limit is set that way? (I'm guessing it was the :limit for UFS.) Hopefully not some weird buffer cache restriction

Re: What does the FreeBSD/i386 ABI say about stack alignment?

2011-01-13 Thread Joerg Sonnenberger
On Fri, Jan 14, 2011 at 12:00:52AM +0200, Kostik Belousov wrote: On Thu, Jan 13, 2011 at 10:57:15PM +0100, Joerg Sonnenberger wrote: On Thu, Jan 13, 2011 at 12:19:00PM -0500, Ryan Stone wrote: I've been trying to get an application compiled with gcc 4.5.1 running on FreeBSD 8.1, but it's