Re: xterm termcape :ti@:te@:

2011-04-25 Thread Gary Jennejohn
On Sun, 24 Apr 2011 20:23:14 -0400 Thomas Dickey dic...@radix.net wrote: On Mon, Apr 25, 2011 at 08:37:05AM +0900, Randy Bush wrote: no help from the following: *** termcap~Fri Mar 18 14:34:01 2011 --- termcap Sun Apr 24 23:33:52 2011 *** *** 3131,3136 ---

Re: No such file or directory in daily setuid checks

2011-04-25 Thread J. Hellenthal
On Sun, Apr 24, 2011 at 07:24:03AM -0400, Glen Barber wrote: Hi, Files/directories do exist, however: kaos % ll /usr/backup/hourly.14/orion/usr/ total 4 drwxr-xr-x 5 root wheel 5 Apr 23 17:01 home drwxr-xr-x 4 root wheel 5 Apr 23 17:01 local Hi Glen, ;) By chance do you have these

Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Alexander Motin
Hi. I've implemented following patch to keep basic compatibility for the migrating users. I don't like such hacky things, but at least I tried to make it less invasive. The idea: - New xpt_path_legacy_ata_id() function in CAM tries to predict bus unit number and then device unit number for

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Thomas Dickey
On Mon, Apr 25, 2011 at 09:52:24AM +0200, Gary Jennejohn wrote: On Sun, 24 Apr 2011 20:23:14 -0400 Thomas Dickey dic...@radix.net wrote: On Mon, Apr 25, 2011 at 08:37:05AM +0900, Randy Bush wrote: no help from the following: *** termcap~Fri Mar 18 14:34:01 2011 --- termcap

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Gary Jennejohn
On Mon, 25 Apr 2011 07:00:39 -0400 Thomas Dickey dic...@radix.net wrote: On Mon, Apr 25, 2011 at 09:52:24AM +0200, Gary Jennejohn wrote: On Sun, 24 Apr 2011 20:23:14 -0400 Thomas Dickey dic...@radix.net wrote: On Mon, Apr 25, 2011 at 08:37:05AM +0900, Randy Bush wrote: no help from

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Andrey V. Elsukov
On 25.04.2011 14:23, Alexander Motin wrote: What will not work: - old device names won't be seen inside GEOM, so users who hardcoded provider names in gmirror/gstripe/... metadata (not the default behavior) are still in trouble. - patch mimics ATA_STATIC_ID behavior, if user had custom

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Marius Strobl
On Mon, Apr 25, 2011 at 01:23:37PM +0300, Alexander Motin wrote: Hi. I've implemented following patch to keep basic compatibility for the migrating users. I don't like such hacky things, but at least I tried to make it less invasive. The idea: - New xpt_path_legacy_ata_id() function in

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Alexander Motin
Andrey V. Elsukov wrote: On 25.04.2011 14:23, Alexander Motin wrote: What will not work: - old device names won't be seen inside GEOM, so users who hardcoded provider names in gmirror/gstripe/... metadata (not the default behavior) are still in trouble. - patch mimics ATA_STATIC_ID

Re: Switch from legacy ata(4) to CAM-based ATA

2011-04-25 Thread Anton Yuzhaninov
On Wed, 20 Apr 2011 12:57:47 +0300, Alexander Motin wrote: AM If somebody has any problems with new ATA stack, please repeat your AM tests with latest HEAD code and contact me if problem is still there. AM Next three weeks before BSDCan I am going to dedicate to fixing possibly AM remaining

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Alexander Motin
Marius Strobl wrote: On Mon, Apr 25, 2011 at 01:23:37PM +0300, Alexander Motin wrote: I've implemented following patch to keep basic compatibility for the migrating users. I don't like such hacky things, but at least I tried to make it less invasive. The idea: - New

Heads up: nfsclient .h dependencies changing

2011-04-25 Thread Rick Macklem
Hi, I will be making a commit to head/sys that will change the .h file dependencies for the experimental NFS client. You probably want to do a fresh: make cleandepend make depend when building a kernel after updating to r221014. rick ___

Re: No such file or directory in daily setuid checks

2011-04-25 Thread Glen Barber
On 4/25/11 4:51 AM, J. Hellenthal wrote: On Sun, Apr 24, 2011 at 07:24:03AM -0400, Glen Barber wrote: Hi, Files/directories do exist, however: kaos % ll /usr/backup/hourly.14/orion/usr/ total 4 drwxr-xr-x 5 root wheel 5 Apr 23 17:01 home drwxr-xr-x 4 root wheel 5 Apr 23 17:01 local

geli on r221012

2011-04-25 Thread Anton Yuzhaninov
Geli no longer works for me after upgrade to r221012. # geli attach -k ~citrin/private.key /dev/label/spool2 Enter passphrase: # from dmesg: GEOM_ELI: Device label/spool2.eli created. GEOM_ELI: Encryption: Blowfish-CBC 128 GEOM_ELI: Integrity: HMAC/MD5 GEOM_ELI: Crypto: software # dd

Re: geli on r221012

2011-04-25 Thread Anton Yuzhaninov
On Mon, 25 Apr 2011 13:31:55 + (UTC), Anton Yuzhaninov wrote: AY Geli no longer works for me after upgrade to r221012. AY r220286 works for me. -- WBR, Anton Yuzhaninov ___ freebsd-current@freebsd.org mailing list

NX stacks on amd64 and powerpc

2011-04-25 Thread Kostik Belousov
I added a support for non-executable stacks on amd64 and PowerPC architectures some time ago, but did not enabled it. Passed time allowed to fix some bugs in the implementation, and I consider it would be good to have NX stacks enabled for architectures that support it. I plan to commit the

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Kostik Belousov
On Mon, Apr 25, 2011 at 03:26:02PM +0300, Alexander Motin wrote: Andrey V. Elsukov wrote: On 25.04.2011 14:23, Alexander Motin wrote: What will not work: - old device names won't be seen inside GEOM, so users who hardcoded provider names in gmirror/gstripe/... metadata (not the default

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Alexander Motin
Kostik Belousov wrote: On Mon, Apr 25, 2011 at 03:26:02PM +0300, Alexander Motin wrote: Andrey V. Elsukov wrote: On 25.04.2011 14:23, Alexander Motin wrote: What will not work: - old device names won't be seen inside GEOM, so users who hardcoded provider names in gmirror/gstripe/...

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Kostik Belousov
[Cc: list trimmed] On Mon, Apr 25, 2011 at 05:38:11PM +0300, Alexander Motin wrote: Kostik Belousov wrote: On Mon, Apr 25, 2011 at 03:26:02PM +0300, Alexander Motin wrote: Andrey V. Elsukov wrote: On 25.04.2011 14:23, Alexander Motin wrote: What will not work: - old device names won't

Re: Old ATA disk names emulation [Was: Switch from legacy ata(4) to CAM-based ATA]

2011-04-25 Thread Alexander Motin
Kostik Belousov wrote: [Cc: list trimmed] On Mon, Apr 25, 2011 at 05:38:11PM +0300, Alexander Motin wrote: Kostik Belousov wrote: On Mon, Apr 25, 2011 at 03:26:02PM +0300, Alexander Motin wrote: Andrey V. Elsukov wrote: On 25.04.2011 14:23, Alexander Motin wrote: What will not work: -

Re: `hw.acpi.thermal.tz0.temperature' disappeared

2011-04-25 Thread John Baldwin
On Wednesday, April 20, 2011 2:22:39 am Romain Garbage wrote: 2011/4/18 m...@freebsd.org: I don't seem to have a hw.acpi.thermal sysctl node on my box. Can someone please try this patch? Works for me too. $ sysctl -a | grep temp [...] hw.acpi.thermal.tz0.temperature: 62.0C

Re: sched_4bsd startup crash trying to run a bound thread on an AP that hasn't started

2011-04-25 Thread John Baldwin
On Wednesday, April 20, 2011 6:02:42 pm Ryan Stone wrote: On Wed, Apr 6, 2011 at 2:29 PM, John Baldwin j...@freebsd.org wrote: I guess one other option would be something like this: if (smp_started (td-td_pinned != 0 || td-td_flags TDF_BOUND ||

Why is /usr/obj/lib32 where it is?

2011-04-25 Thread Doug Barton
Howdy, In my /usr/obj (on amd64) I have 2 directories; lib32, and the root of the fs where the sources are. It seems odd to me that lib32 is not under the same root as everything else, so I'm asking why. :) Doug -- Nothin' ever doesn't change, but nothin' changes much.

Re: Why is /usr/obj/lib32 where it is?

2011-04-25 Thread Steve Kargl
On Mon, Apr 25, 2011 at 12:53:44PM -0700, Doug Barton wrote: Howdy, In my /usr/obj (on amd64) I have 2 directories; lib32, and the root of the fs where the sources are. It seems odd to me that lib32 is not under the same root as everything else, so I'm asking why. :)

Re: Why is /usr/obj/lib32 where it is?

2011-04-25 Thread Doug Barton
On 04/25/2011 13:07, Steve Kargl wrote: On Mon, Apr 25, 2011 at 12:53:44PM -0700, Doug Barton wrote: Howdy, In my /usr/obj (on amd64) I have 2 directories; lib32, and the root of the fs where the sources are. It seems odd to me that lib32 is not under the same root as everything else, so I'm

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Thomas Dickey
On Mon, Apr 25, 2011 at 01:12:54PM +0200, Gary Jennejohn wrote: Mine sets it to rxvt. I tried setting TERM to rxvt in xterm, but of course it didn't work. I overlooked asking whether Randy had regen'd the termcap.db file which is presumably used for the updated termcap. A truss/ktrace would

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Kostik Belousov
On Mon, Apr 25, 2011 at 05:38:26PM -0400, Thomas Dickey wrote: On Mon, Apr 25, 2011 at 01:12:54PM +0200, Gary Jennejohn wrote: Mine sets it to rxvt. I tried setting TERM to rxvt in xterm, but of course it didn't work. I overlooked asking whether Randy had regen'd the termcap.db file

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Randy Bush
I overlooked asking whether Randy had regen'd the termcap.db file which is presumably used for the updated termcap. i did ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Randy Bush
i gave up and am using xterm-clear, which is working for me. randy ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Thomas Dickey
On Tue, Apr 26, 2011 at 01:10:58AM +0300, Kostik Belousov wrote: On Mon, Apr 25, 2011 at 05:38:26PM -0400, Thomas Dickey wrote: On Mon, Apr 25, 2011 at 01:12:54PM +0200, Gary Jennejohn wrote: Mine sets it to rxvt. I tried setting TERM to rxvt in xterm, but of course it didn't work.

Re: xterm termcape :ti@:te@:

2011-04-25 Thread Thomas Dickey
On Tue, Apr 26, 2011 at 07:41:38AM +0900, Randy Bush wrote: I overlooked asking whether Randy had regen'd the termcap.db file which is presumably used for the updated termcap. i did I sort of assumed you did, but am still puzzled where the problem lies. -- Thomas E. Dickey

newnfs NFS client testing

2011-04-25 Thread Rick Macklem
Hi, I believe that the new/experimental NFS client in head is now compatible with the old/regular NFS client. If you run current and do NFS mounts, testing of the new NFS client would be appreciated. All you need to do is: - replace the fstype of nfs with newnfs in the appropriate lines in

responsiveness during IO tasks

2011-04-25 Thread Steve Wills
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I've noticed lately that when doing heavy IO, my 9-CURRENT system (Fri Apr 15 23:33:46 EDT 2011) is quite unresponsive. I have two ZFS mirrors setup and run KDE4. The system has 12GB of RAM. When I, for example, copy an ISO image from one mirror