Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-26 Thread Dmitry Sivachenko

 On 25 мая 2015 г., at 17:40, John Baldwin j...@freebsd.org wrote:
 
 Some other related questions are: can we revive print/acroread now and or
 use a 64-bit flash plugin after these changes?


I also wonder if it is possible to run 64bit Oracle JDK  (Linux version) now?
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org

Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-26 Thread Slawa Olhovchenkov
On Tue, May 26, 2015 at 01:18:01AM +0100, Bruce Simpson wrote:

 All,
 
 The enhancements to the Linux runtime are probably of more interest to 
 folk porting server applications; I am particularly happy to see 
 recvmmsg() and sendmmsg() go in.
 
 It might also be wise to emulate the getrandom() API, even if this is 
 only in terms of wrapping the relevant sysctl for now.

What about skype4.3?
Do you collaborate with Baptiste Daroussin to allow install linux32 on
amd64 (some iKVM have linux binyary .so for Java plugin and don't work
[w/o tricks] on linux64)
Do you plan to MFC?

 On 25/05/2015 18:27, Slawa Olhovchenkov wrote:
  Currenly I don't see any linux in Acrobat Reader support OS: 
  https://get.adobe.com/reader/otherversions/ 
 
 It got pulled. Of course, support for PDF's forms varies greatly outside 
 of official Adobe product.
 
 A better alternative might be the MuPDF backend for KDE Okular, or for 
 Zathura, neither of which are packaged  anywhere in the Linux world yet. 
 Of course, this could be built natively, without needing the Linux 
 runtime support.
 
 I've noticed that rendering performance seems disappointing in the open 
 source Linux PDF readers, as compared to OS X Preview.app on similar 
 hardware.

I am just restore from SVN latest working print/acroread9 and continue
to use.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-26 Thread Pedro Giffuni



On 25/05/2015 09:04 a.m., Chagin Dmitry wrote:

On Mon, May 25, 2015 at 07:48:49AM -0400, John Baldwin wrote:

On Sunday, May 24, 2015 04:07:12 PM Dmitry Chagin wrote:

Author: dchagin
Date: Sun May 24 16:07:11 2015
New Revision: 283424
URL: https://svnweb.freebsd.org/changeset/base/283424

Log:
   Add preliminary support for x86-64 Linux binaries.
   
   Differential Revision:	https://reviews.freebsd.org/D1076


Added:
   head/sys/amd64/linux/
   head/sys/amd64/linux/Makefile   (contents, props changed)
   head/sys/amd64/linux/linux.h   (contents, props changed)
   head/sys/amd64/linux/linux_dummy.c   (contents, props changed)
   head/sys/amd64/linux/linux_genassym.c   (contents, props changed)
   head/sys/amd64/linux/linux_ipc64.h   (contents, props changed)
   head/sys/amd64/linux/linux_locore.s   (contents, props changed)
   head/sys/amd64/linux/linux_machdep.c   (contents, props changed)
   head/sys/amd64/linux/linux_support.s   (contents, props changed)
   head/sys/amd64/linux/linux_sysvec.c   (contents, props changed)
   head/sys/amd64/linux/linux_vdso.lds.s   (contents, props changed)
   head/sys/amd64/linux/syscalls.conf   (contents, props changed)
   head/sys/amd64/linux/syscalls.master   (contents, props changed)
   head/sys/modules/linux64/
   head/sys/modules/linux64/Makefile   (contents, props changed)

First, I'm really happy to see this land in HEAD!

Thanks!


Indeed ... HUGE congratulations and thanks to Dmitry .. Great Job!

Pedro.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread John Baldwin
On Sunday, May 24, 2015 04:07:12 PM Dmitry Chagin wrote:
 Author: dchagin
 Date: Sun May 24 16:07:11 2015
 New Revision: 283424
 URL: https://svnweb.freebsd.org/changeset/base/283424
 
 Log:
   Add preliminary support for x86-64 Linux binaries.
   
   Differential Revision:  https://reviews.freebsd.org/D1076
 
 Added:
   head/sys/amd64/linux/
   head/sys/amd64/linux/Makefile   (contents, props changed)
   head/sys/amd64/linux/linux.h   (contents, props changed)
   head/sys/amd64/linux/linux_dummy.c   (contents, props changed)
   head/sys/amd64/linux/linux_genassym.c   (contents, props changed)
   head/sys/amd64/linux/linux_ipc64.h   (contents, props changed)
   head/sys/amd64/linux/linux_locore.s   (contents, props changed)
   head/sys/amd64/linux/linux_machdep.c   (contents, props changed)
   head/sys/amd64/linux/linux_support.s   (contents, props changed)
   head/sys/amd64/linux/linux_sysvec.c   (contents, props changed)
   head/sys/amd64/linux/linux_vdso.lds.s   (contents, props changed)
   head/sys/amd64/linux/syscalls.conf   (contents, props changed)
   head/sys/amd64/linux/syscalls.master   (contents, props changed)
   head/sys/modules/linux64/
   head/sys/modules/linux64/Makefile   (contents, props changed)

First, I'm really happy to see this land in HEAD!

Second, __FreeBSD_version bump perhaps?

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread Chagin Dmitry
On Mon, May 25, 2015 at 07:48:49AM -0400, John Baldwin wrote:
 On Sunday, May 24, 2015 04:07:12 PM Dmitry Chagin wrote:
  Author: dchagin
  Date: Sun May 24 16:07:11 2015
  New Revision: 283424
  URL: https://svnweb.freebsd.org/changeset/base/283424
  
  Log:
Add preliminary support for x86-64 Linux binaries.

Differential Revision:https://reviews.freebsd.org/D1076
  
  Added:
head/sys/amd64/linux/
head/sys/amd64/linux/Makefile   (contents, props changed)
head/sys/amd64/linux/linux.h   (contents, props changed)
head/sys/amd64/linux/linux_dummy.c   (contents, props changed)
head/sys/amd64/linux/linux_genassym.c   (contents, props changed)
head/sys/amd64/linux/linux_ipc64.h   (contents, props changed)
head/sys/amd64/linux/linux_locore.s   (contents, props changed)
head/sys/amd64/linux/linux_machdep.c   (contents, props changed)
head/sys/amd64/linux/linux_support.s   (contents, props changed)
head/sys/amd64/linux/linux_sysvec.c   (contents, props changed)
head/sys/amd64/linux/linux_vdso.lds.s   (contents, props changed)
head/sys/amd64/linux/syscalls.conf   (contents, props changed)
head/sys/amd64/linux/syscalls.master   (contents, props changed)
head/sys/modules/linux64/
head/sys/modules/linux64/Makefile   (contents, props changed)
 
 First, I'm really happy to see this land in HEAD!
Thanks!

 
 Second, __FreeBSD_version bump perhaps?
dim@ bumped, is that enough?

-- 
Have fun!
chd
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread Dimitry Andric
On 25 May 2015, at 16:04, Chagin Dmitry dcha...@freebsd.org wrote:
 
 On Mon, May 25, 2015 at 07:48:49AM -0400, John Baldwin wrote:
 On Sunday, May 24, 2015 04:07:12 PM Dmitry Chagin wrote:
 Author: dchagin
 Date: Sun May 24 16:07:11 2015
 New Revision: 283424
 URL: https://svnweb.freebsd.org/changeset/base/283424
 
 Log:
  Add preliminary support for x86-64 Linux binaries.
...
 Second, __FreeBSD_version bump perhaps?
 dim@ bumped, is that enough?

I've added notes for both r283424 and r283526 to the porter's handbook:

https://svnweb.freebsd.org/doc?view=revisionrevision=46725

-Dimitry



signature.asc
Description: Message signed with OpenPGP using GPGMail


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread John Baldwin
On Monday, May 25, 2015 06:13:39 PM Slawa Olhovchenkov wrote:
 On Mon, May 25, 2015 at 10:40:09AM -0400, John Baldwin wrote:
 
  Some other related questions are: can we revive print/acroread now and or
  use a 64-bit flash plugin after these changes?
 
 I am still use print/acroread.
 As I know removing print/acroread irrelevant to linuxator.
 This is will by security reasson.
 I am don't open suspicious pdf from suspicious source and just ignore
 this removing.

I mean more if these updates allow us to update to a newer version of
print/acroread that would no longer be vulnerable (if such a thing exists)
whether 32- or 64-bit.

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread John Baldwin
On Monday, May 25, 2015 05:04:21 PM Chagin Dmitry wrote:
 On Mon, May 25, 2015 at 07:48:49AM -0400, John Baldwin wrote:
  On Sunday, May 24, 2015 04:07:12 PM Dmitry Chagin wrote:
   Author: dchagin
   Date: Sun May 24 16:07:11 2015
   New Revision: 283424
   URL: https://svnweb.freebsd.org/changeset/base/283424
   
   Log:
 Add preliminary support for x86-64 Linux binaries.
 
 Differential Revision:  https://reviews.freebsd.org/D1076
   
   Added:
 head/sys/amd64/linux/
 head/sys/amd64/linux/Makefile   (contents, props changed)
 head/sys/amd64/linux/linux.h   (contents, props changed)
 head/sys/amd64/linux/linux_dummy.c   (contents, props changed)
 head/sys/amd64/linux/linux_genassym.c   (contents, props changed)
 head/sys/amd64/linux/linux_ipc64.h   (contents, props changed)
 head/sys/amd64/linux/linux_locore.s   (contents, props changed)
 head/sys/amd64/linux/linux_machdep.c   (contents, props changed)
 head/sys/amd64/linux/linux_support.s   (contents, props changed)
 head/sys/amd64/linux/linux_sysvec.c   (contents, props changed)
 head/sys/amd64/linux/linux_vdso.lds.s   (contents, props changed)
 head/sys/amd64/linux/syscalls.conf   (contents, props changed)
 head/sys/amd64/linux/syscalls.master   (contents, props changed)
 head/sys/modules/linux64/
 head/sys/modules/linux64/Makefile   (contents, props changed)
  
  First, I'm really happy to see this land in HEAD!
 Thanks!
 
  
  Second, __FreeBSD_version bump perhaps?
 dim@ bumped, is that enough?

That is fine to reuse, but it should probably be explicitly noted in the
comments for that version that it is both for clang 3.6.1 and for x86-64
Linux support.  I imagine the ports tree will know which versions include
your changes.

Also, I don't read ports commits since src is enough of a firehouse, so I
have a naive question: is the ports tree updated to supply a 64-bit
linux-base?  Maybe a mail to current@ on how to use a 64-bit base, etc.?

Some other related questions are: can we revive print/acroread now and or
use a 64-bit flash plugin after these changes?

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread John Baldwin
On Monday, May 25, 2015 10:40:09 AM John Baldwin wrote:
 On Monday, May 25, 2015 05:04:21 PM Chagin Dmitry wrote:
 That is fine to reuse, but it should probably be explicitly noted in the
 comments for that version that it is both for clang 3.6.1 and for x86-64
 Linux support.  I imagine the ports tree will know which versions include
    want to
 your changes.

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread Slawa Olhovchenkov
On Mon, May 25, 2015 at 10:40:09AM -0400, John Baldwin wrote:

 Some other related questions are: can we revive print/acroread now and or
 use a 64-bit flash plugin after these changes?

I am still use print/acroread.
As I know removing print/acroread irrelevant to linuxator.
This is will by security reasson.
I am don't open suspicious pdf from suspicious source and just ignore
this removing.
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread Slawa Olhovchenkov
On Mon, May 25, 2015 at 12:32:41PM -0400, John Baldwin wrote:

 On Monday, May 25, 2015 06:13:39 PM Slawa Olhovchenkov wrote:
  On Mon, May 25, 2015 at 10:40:09AM -0400, John Baldwin wrote:
  
   Some other related questions are: can we revive print/acroread now and or
   use a 64-bit flash plugin after these changes?
  
  I am still use print/acroread.
  As I know removing print/acroread irrelevant to linuxator.
  This is will by security reasson.
  I am don't open suspicious pdf from suspicious source and just ignore
  this removing.
 
 I mean more if these updates allow us to update to a newer version of
 print/acroread that would no longer be vulnerable (if such a thing exists)
 whether 32- or 64-bit.

Currenly I don't see any linux in Acrobat Reader support OS: 
https://get.adobe.com/reader/otherversions/
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread John Baldwin
On Monday, May 25, 2015 08:27:34 PM Slawa Olhovchenkov wrote:
 On Mon, May 25, 2015 at 12:32:41PM -0400, John Baldwin wrote:
 
  On Monday, May 25, 2015 06:13:39 PM Slawa Olhovchenkov wrote:
   On Mon, May 25, 2015 at 10:40:09AM -0400, John Baldwin wrote:
   
Some other related questions are: can we revive print/acroread now and 
or
use a 64-bit flash plugin after these changes?
   
   I am still use print/acroread.
   As I know removing print/acroread irrelevant to linuxator.
   This is will by security reasson.
   I am don't open suspicious pdf from suspicious source and just ignore
   this removing.
  
  I mean more if these updates allow us to update to a newer version of
  print/acroread that would no longer be vulnerable (if such a thing exists)
  whether 32- or 64-bit.
 
 Currenly I don't see any linux in Acrobat Reader support OS: 
 https://get.adobe.com/reader/otherversions/

Humm, it seems it was pulled last year. :-/

-- 
John Baldwin
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org


Re: svn commit: r283424 - in head/sys: amd64/linux modules/linux64

2015-05-25 Thread Bruce Simpson

All,

The enhancements to the Linux runtime are probably of more interest to 
folk porting server applications; I am particularly happy to see 
recvmmsg() and sendmmsg() go in.


It might also be wise to emulate the getrandom() API, even if this is 
only in terms of wrapping the relevant sysctl for now.


On 25/05/2015 18:27, Slawa Olhovchenkov wrote:
Currenly I don't see any linux in Acrobat Reader support OS: 
https://get.adobe.com/reader/otherversions/ 


It got pulled. Of course, support for PDF's forms varies greatly outside 
of official Adobe product.


A better alternative might be the MuPDF backend for KDE Okular, or for 
Zathura, neither of which are packaged  anywhere in the Linux world yet. 
Of course, this could be built natively, without needing the Linux 
runtime support.


I've noticed that rendering performance seems disappointing in the open 
source Linux PDF readers, as compared to OS X Preview.app on similar 
hardware.


Bruce
___
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to svn-src-all-unsubscr...@freebsd.org