search for: subtility

Displaying 20 results from an estimated 22 matches for "subtility".

Did you mean: futility
2000 Feb 28
1
sub in boxplot doesn't do subtiles
R list- Under Windows 2000 and r 99: I wanted a subtitle in boxplot and tried: > boxplot((AU[ROCK==2 & AU>-1]+0.1~iz),log="y",main="Boxplot of AU by 25 M elevations",sub="aa") And I got: Error in sort(x) : only vectors can be sorted In addition: Warning messages: 1: is.na() applied to non-(list or vector) in: is.na(x) 2: is.na() applied to non-(list
2000 Apr 27
0
Browsing Win98 shares from NT on a Samba-controlled domain
I am running a small network consisting of a few Win98 machines, 2 NT (SP6) machines and a Samba 2.0.6 PDC. I am using domain logons, and everything is working fine. However, when I try to list the shares on a Win98 box fron an NT machine, having logged on with a domain-authenticated account, the Win98 boxes return an "Access Denied" error. If I do the same with a local account on the
2017 Dec 06
1
[PATCH v2 1/2] virtio_mmio: add cleanup for virtio_mmio_probe
...f you did not call register_virtio_device() yet. - Move just devm_kfree() into the release function. Cleanup the resources here, do the put_device() last thing if had you called register_virtio_device() before and devm_kfree() if you didn't. [Of course, I still might be missing some devm subtility, so other comments are welcome.]
2017 Dec 06
1
[PATCH v2 1/2] virtio_mmio: add cleanup for virtio_mmio_probe
...f you did not call register_virtio_device() yet. - Move just devm_kfree() into the release function. Cleanup the resources here, do the put_device() last thing if had you called register_virtio_device() before and devm_kfree() if you didn't. [Of course, I still might be missing some devm subtility, so other comments are welcome.]
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
Recent rework of the virtio_mmio probe path balanced a devm_ioremap() with an iounmap() rather than its devm variant. This ends up corrupting the devm datastructures, and results in the following boot failure on arm64 under QEMU 2.9.0: [ 3.450397] ------------[ cut here ]------------ [ 3.453822] Trying to vfree() nonexistent vm area (00000000c05b4844) [ 3.460534] WARNING: CPU: 1 PID: 1
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
Recent rework of the virtio_mmio probe path balanced a devm_ioremap() with an iounmap() rather than its devm variant. This ends up corrupting the devm datastructures, and results in the following boot failure on arm64 under QEMU 2.9.0: [ 3.450397] ------------[ cut here ]------------ [ 3.453822] Trying to vfree() nonexistent vm area (00000000c05b4844) [ 3.460534] WARNING: CPU: 1 PID: 1
2017 Feb 09
2
Messages on this list are often marked as spam.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA512 Well for other mailing lists I have noticed that a lot of lists add text to the body or subject saying what list the email is from which would cause the signature not to match. But the dovecot list doesn't do that so that's why I found it strange that so many emails fail dkim. - -- Steven Mainor On February 7, 2017 2:22:59 AM EST,
2003 Dec 17
0
h323.conf new try
Hi list, After several tries to understand the subtil description in the h323.conf to be able to make the next scenario I was presented the following error messages by asterisk. Can somebody tell me please what I am doing wrong. Scenario: Gatekeeper (h323) --> Asterisk PBX -->(h323) Gateway Endpoints are connected to Gatekeeper. Call does come in like 999931235650087 with codec g711
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
...To fix this, we can simply rip out the explicit cleanup that the devm > > infrastructure will do for us when our probe function returns an error > > code. We only need to ensure that we call put_device() if a call to > > register_virtio_device() fails. > > OK, that was the subtility I obviously missed. Reading through the > code, this seems correct (although I find the infrastructure a bit > unintuitive). No worries. > Shouldn't the cleanup in _remove() then be removed as well? Ah, I'd missed that. I believe that can be removed, yes. Should I spin a v2 wi...
2017 Dec 12
2
[PATCH] virtio_mmio: fix devm cleanup
...To fix this, we can simply rip out the explicit cleanup that the devm > > infrastructure will do for us when our probe function returns an error > > code. We only need to ensure that we call put_device() if a call to > > register_virtio_device() fails. > > OK, that was the subtility I obviously missed. Reading through the > code, this seems correct (although I find the infrastructure a bit > unintuitive). No worries. > Shouldn't the cleanup in _remove() then be removed as well? Ah, I'd missed that. I believe that can be removed, yes. Should I spin a v2 wi...
2001 Dec 22
2
.plan to avoid unhappy users
Hi, I am on a developpers list for mandrake: cooker@ and the rsync-servers broke which resulted in a lot of very unhappy people cause their rsync directories got empied. My idea is the following. rsync is a mirroring tool. The usual thing that happens in a mirroring tool is that packages do not disappear. You server that archive: like the linux-kernel server. And you got servers that update
2017 Dec 12
0
[PATCH] virtio_mmio: fix devm cleanup
...0/0x18 > Oops. > To fix this, we can simply rip out the explicit cleanup that the devm > infrastructure will do for us when our probe function returns an error > code. We only need to ensure that we call put_device() if a call to > register_virtio_device() fails. OK, that was the subtility I obviously missed. Reading through the code, this seems correct (although I find the infrastructure a bit unintuitive). > > Signed-off-by: Mark Rutland <mark.rutland at arm.com> > Fixes: 7eb781b1bbb7136f ("virtio_mmio: add cleanup for virtio_mmio_probe") > Cc: Corneli...
2007 Sep 09
0
The use for an XML based metadata format
On 2007-09-09, Silvia wrote: > Hi Daniel, > > > I really have to ask you: Have you even tried to describe media using > > the excising solutions? I don't mean adding subtitles and editing > > stuff. I mean really say what a Ogg file contins. There is no working > > wheels for this. Vorbis comments--used in FLAC too--can describe > > content with a very
2017 Dec 05
3
[PATCH v2 0/2] Add cleanup for virtio_mmio driver
this patchset try to add cleanup for virtio_mmio driver, include virtio_mmio_probe and virtio_mmio_remove weiping zhang (2): virtio_mmio: add cleanup for virtio_mmio_probe virtio_mmio: add cleanup for virtio_mmio_remove drivers/virtio/virtio_mmio.c | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) -- 2.9.4
2017 Dec 05
3
[PATCH v2 0/2] Add cleanup for virtio_mmio driver
this patchset try to add cleanup for virtio_mmio driver, include virtio_mmio_probe and virtio_mmio_remove weiping zhang (2): virtio_mmio: add cleanup for virtio_mmio_probe virtio_mmio: add cleanup for virtio_mmio_remove drivers/virtio/virtio_mmio.c | 43 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 35 insertions(+), 8 deletions(-) -- 2.9.4
2005 Oct 10
5
Show Progress in loop
Hi I have a loop which is doing time consuming calculations and I would like to be able to have some feedback on where it is in it's calculations. I tried to simply show the counter variable in the loop, but id doesn't work as all display seems to be delayed until the loop is completed. Is there any way of displaying the progress of a loop? Rainer The loop: for (i in
2007 Sep 09
0
The use for an XML based metadata format
Hi Daniel, On 9/10/07, Daniel Aleksandersen <aleksandersen@runbox.com> wrote: > It is indeed necessary. I hope this format will be a huge leap in metadata > descriptions for media content. Not only for music, but any media found in > Oggs. You are thinking too small. Such standards should not be made to just work with Ogg, but rather possible to work with any media format out
2008 Dec 19
6
FTPS setup problem
Hi! I'm trying to figure out what's going wrong with a "simple" FTPS setup and VSFTPD. I saw references on Google and tried, and tried, and tried... without success. I'll start by explaining my situation: I have a WEB development server behind a firewall. It's currently only for the intranet. We now have an external company that will have to do a new website
2007 Sep 09
2
The use for an XML based metadata format
Hi Daniel,, > I really have to ask you: Have you even tried to describe media using the > excising solutions? I don't mean adding subtitles and editing stuff. I mean > really say what a Ogg file contins. There is no working wheels for this. > Vorbis comments--used in FLAC too--can describe content with a very limited > field names (and badly enforced standards). I have and I
2019 Jul 24
10
hmm_range_fault related fixes and legacy API removal v3
Hi Jérôme, Ben and Jason, below is a series against the hmm tree which fixes up the mmap_sem locking in nouveau and while at it also removes leftover legacy HMM APIs only used by nouveau. The first 4 patches are a bug fix for nouveau, which I suspect should go into this merge window even if the code is marked as staging, just to avoid people copying the breakage. Changes since v2: - new patch