Displaying 20 results from an estimated 300 matches similar to: "Re: [livid-dev] Re: some comments on the ovd proposal"
2011 Jan 21
1
Unhandled exception error on single account
I'm running into a strange problem with an unhandled exception when I run a wine command using one account, but not another(!).
I'd very much appreciate any help troubleshooting this, as I must run wine from the account with the problem. I've gone through and cross-checked environment variables and permissions, but nothing obvious pops out.
Here's wine the way it should work on
2000 Jun 13
1
Re: [livid-ovd] putting the video into ogg multimedia
I'll get to the technical aspects of these letters in a bit; they require an a
little thought and I'm knee deep in the codebook engine right now...
> <RANT>
>
> I personally favor the MNG approach over the Ogg strategy because of the way
> the licensing agreements read. Ogg is more like "you are free to use this,
> just don't change it without our
2011 Sep 12
6
WINE fails in directories with Question Marks in name
Is there a way to tell WINE that question marks in directory names are okay? WINE fails whenever I ask it to access a file from within a directory with a question mark in its name.
Specifically, my HTPC marks all commercials using WINE and Comskip. Whenever the schedule includes a tv show with a question mark in its title, WINE fails. Here are the logs that illustrate the failure.
Script log
2000 Nov 06
1
Re: I'd like to join the OVD project
On Mon, Nov 06, 2000 at 12:16:00PM -0700, Robert Scott Horning wrote:
> "Sean R. Lynch" wrote:
>
> > I was one of the original advocates of the project and I've
> > written a draft specification at
> > http://www.literati.org/~seanl/ovd.html that to my knowledge
> > is the only one in existence. I'd like to work on some code
> > integrating
2018 Mar 19
0
get_user_pages returning 0 (was Re: kernel BUG at drivers/vhost/vhost.c:LINE!)
On Mon, Mar 19, 2018 at 4:29 PM, David Sterba <dsterba at suse.cz> wrote:
> On Mon, Mar 19, 2018 at 05:09:28PM +0200, Michael S. Tsirkin wrote:
>> Hello!
>> The following code triggered by syzbot
>>
>> r = get_user_pages_fast(log, 1, 1, &page);
>> if (r < 0)
>> return r;
>> BUG_ON(r != 1);
>>
2008 Jul 25
1
default nfsmount options
Hi,
In a discussion on the kernel bugzilla (bug 11154) the question of NFS
mount options came up. Trond Myklebust seems to consider the default
nfsmount options (V3 over TCP, with timeo=7 and retrans=3) to be bad.
I don't know yet if that's my problem, but anyway, would you consider
changing the defaults to timeo=600 and retrans=2, if only just to match
the default util-linux mount
2018 Mar 19
0
get_user_pages returning 0 (was Re: kernel BUG at drivers/vhost/vhost.c:LINE!)
Hello!
The following code triggered by syzbot
r = get_user_pages_fast(log, 1, 1, &page);
if (r < 0)
return r;
BUG_ON(r != 1);
Just looking at get_user_pages_fast's documentation this seems
impossible - it is supposed to only ever return # of pages
pinned or errno.
However, poking at code, I see at least one path that might cause this:
2003 Jan 02
0
Re: Ogg Internet Drafts - create application/ogg-vor bis, application/ogg-tarkin, etc.
>>> Ideally? You seem to be stuck in a world of operating systems that need
>>> a specific filename extension to identify a file type.
>>
>> Sounds like you're a Mac user.
>
> <snip>
>
> ...determining a file type is not a task for the OS...
For the past few years, users of the QuickTime container have faced a similar dilemma to what we have
2019 Oct 04
0
[PATCH 07/11] vhost: convert vhost_umem_interval_tree to half closed intervals
On Fri, 04 Oct 2019, Michel Lespinasse wrote:
>On Thu, Oct 03, 2019 at 01:18:54PM -0700, Davidlohr Bueso wrote:
>> @@ -1320,15 +1320,14 @@ static bool iotlb_access_ok(struct vhost_virtqueue *vq,
>> {
>> const struct vhost_umem_node *node;
>> struct vhost_umem *umem = vq->iotlb;
>> - u64 s = 0, size, orig_addr = addr, last = addr + len - 1;
>> + u64 s
2007 Apr 18
1
[PATCH 3/4] Pte xchg optimization.patch
In situations where page table updates need only be made locally, and there
is no cross-processor A/D bit races involved, we need not use the heavyweight
xchg instruction to atomically fetch and clear page table entries. Instead,
we can just read and clear them directly.
This introduces a neat optimization for non-SMP kernels; drop the atomic
xchg operations from page table updates.
Thanks to
2007 Apr 18
1
[PATCH 3/4] Pte xchg optimization.patch
In situations where page table updates need only be made locally, and there
is no cross-processor A/D bit races involved, we need not use the heavyweight
xchg instruction to atomically fetch and clear page table entries. Instead,
we can just read and clear them directly.
This introduces a neat optimization for non-SMP kernels; drop the atomic
xchg operations from page table updates.
Thanks to
2007 Apr 20
0
8 commits - libswfdec/swfdec_buffer.c libswfdec/swfdec_buffer.h libswfdec/swfdec_root_sprite.c libswfdec/swfdec_swf_decoder.c libswfdec/swfdec_tag.c NEWS test/parse.c
NEWS | 15 ++++++
libswfdec/swfdec_buffer.c | 91 ++++++++++++++++++++++++++++++++++++-----
libswfdec/swfdec_buffer.h | 6 +-
libswfdec/swfdec_root_sprite.c | 2
libswfdec/swfdec_swf_decoder.c | 13 +++--
libswfdec/swfdec_tag.c | 8 +--
test/parse.c | 6 +-
7 files changed, 118 insertions(+), 23 deletions(-)
New
2013 Aug 30
17
[PATCH] rwsem: add rwsem_is_contended
Btrfs uses an rwsem to control access to its extent tree. Threads will hold a
read lock on this rwsem while they scan the extent tree, and if need_resched()
they will drop the lock and schedule. The transaction commit needs to take a
write lock for this rwsem for a very short period to switch out the commit
roots. If there are a lot of threads doing this caching operation we can starve
out the
2010 Apr 11
1
[PATCH 2/2] drm/nv04: Implement missing nv04 PGRAPH methods in software.
Signed-off-by: Marcin Ko?cielnicki <koriakin at 0x04.net>
---
drivers/gpu/drm/nouveau/nv04_graph.c | 571 ++++++++++++++++++++++++++++++++--
1 files changed, 538 insertions(+), 33 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/nv04_graph.c b/drivers/gpu/drm/nouveau/nv04_graph.c
index d96c351..1b0af3a 100644
--- a/drivers/gpu/drm/nouveau/nv04_graph.c
+++
2000 Oct 18
0
beta release source tarballs
I recently went looking for the beta2 sources and was surprised to not
find them anywhere on the website. Worse, the release tags 'public-beta-1'
and 'release_1_0_beta_2' longer retrieve the complete code, since part of
the repository has been manually rearranged! (Thanks to cvs's non-support
of changes in directory structure.)
Fortunately, Monty made backups, and was kind
2006 Aug 01
0
baraha - settings?
hello all, and apologies in advance for this newbie question. i recently
installed baraha direct 7.0 (a system-wide phonetic keyboard for indian
fonts) and it seems to open fine with wine, but the fonts aren't working
properly (its own fonts aren't phonetically controlled by keyboard input and
other unicode indian fonts aren't displayed in the proper scripts - but in
roman). figure
2004 Sep 13
0
[AVT] Open Speech Repository (fwd)
interesting for anyone testing out speex :)
kfish.
----- Forwarded message from Alan Clark <alan.d.clark@telchemy.com> -----
From: Alan Clark <alan.d.clark@telchemy.com>
To: avt@ietf.org
Date: Mon, 13 Sep 2004 12:57:01 -0400
X-Mailer: Microsoft Outlook IMO, Build 9.0.6604 (9.0.2911.0)
Subject: [AVT] Open Speech Repository
We've started to build a database of speech samples in
2003 Dec 26
0
Re: time to build an open phone?
> > I've never seen stats, but it's probably a safe assumption that the
> > majority of IP phones are sitting next to a PC and the additional
> > expense has been incurred because "people want a phone that looks and
> > works like a phone". That's certainly been my experience far
> > outweighing any technical issues with quality or reliability
2007 Mar 08
0
Need a Linux system Engineer RoR
Project Details:
Location: Rockville, MD.
Duration: 1yr
Skills:
Taking direction from the Senior System Architect / Engineer is
responsible for the installation, set-up, configuration, administration,
troubleshooting, tuning and back-up Red Hat OS on various hardware
servers. Provides business day and emergency (remote) support.
The Systems Engineer will be knowledgeable of Linux-based
2000 Jul 31
2
vorbis-tools comment cleanup
It looked like ogg123 was expecting an out-of-date set of headers. I've
updated the printout section to expect the canonical set from
docs/v-comment.html.
I also found vorbize's use of "track" for the title tag confusing. The
second patch is just a rename in the code and ui.
Cheers,
-ralph
--
giles@ashlu.bc.ca
<HR NOSHADE>
<UL>
<LI>TEXT/PLAIN attachment: