search for: pagewritable

Displaying 13 results from an estimated 13 matches for "pagewritable".

Did you mean: page_writable
2007 Apr 18
0
[patch 6/9] Guest page hinting: writable page table entries.
...anging. */ #define PG_discarded 22 /* HV page has been discarded. */ +#define PG_writable 23 /* HV page is mapped writable. */ /* * Manipulation of page state flags @@ -267,6 +268,10 @@ #define TestSetPageDiscarded(page) \ test_and_set_bit(PG_discarded, &(page)->flags) +#define PageWritable(page) test_bit(PG_writable, &(page)->flags) +#define SetPageWritable(page) set_bit(PG_writable, &(page)->flags) +#define ClearPageWritable(page) clear_bit(PG_writable, &(page)->flags) + struct page; /* forward declaration */ int test_clear_page_dirty(struct page *page); dif...
2007 Apr 18
0
[patch 6/9] Guest page hinting: writable page table entries.
...anging. */ #define PG_discarded 22 /* HV page has been discarded. */ +#define PG_writable 23 /* HV page is mapped writable. */ /* * Manipulation of page state flags @@ -267,6 +268,10 @@ #define TestSetPageDiscarded(page) \ test_and_set_bit(PG_discarded, &(page)->flags) +#define PageWritable(page) test_bit(PG_writable, &(page)->flags) +#define SetPageWritable(page) set_bit(PG_writable, &(page)->flags) +#define ClearPageWritable(page) clear_bit(PG_writable, &(page)->flags) + struct page; /* forward declaration */ int test_clear_page_dirty(struct page *page); dif...
2009 Mar 27
16
[patch 0/6] Guest page hinting version 7.
Greetings, the circus is back in town -- another version of the guest page hinting patches. The patches differ from version 6 only in the kernel version, they apply against 2.6.29. My short sniff test showed that the code is still working as expected. To recap (you can skip this if you read the boiler plate of the last version of the patches): The main benefit for guest page hinting vs. the
2009 Mar 27
16
[patch 0/6] Guest page hinting version 7.
Greetings, the circus is back in town -- another version of the guest page hinting patches. The patches differ from version 6 only in the kernel version, they apply against 2.6.29. My short sniff test showed that the code is still working as expected. To recap (you can skip this if you read the boiler plate of the last version of the patches): The main benefit for guest page hinting vs. the
2009 Mar 27
16
[patch 0/6] Guest page hinting version 7.
Greetings, the circus is back in town -- another version of the guest page hinting patches. The patches differ from version 6 only in the kernel version, they apply against 2.6.29. My short sniff test showed that the code is still working as expected. To recap (you can skip this if you read the boiler plate of the last version of the patches): The main benefit for guest page hinting vs. the
2009 Jun 04
3
libogg++ release 1.1.0
Hi everybody, I posted here about two years ago about the initial release. This is a release that fixes many bugs, and has enhancements that make it possible to support a multi-stream format, ALingA, which I will mention briefly later. It also supports a PCM format, Neuro, both as part of the multi-stream codec, and stand-alone. libogg++ is a C++ library implementing Ogg. It is designed to be
2008 Nov 03
0
No subject
BTW: I am acutally started to implement the ogg skeleton handling ... - Yorn > Hi everybody, > > I posted here about two years ago about the initial release. This is a > release that fixes many bugs, and has enhancements that make it possible > to support a multi-stream format, ALingA, which I will mention briefly > later. It also supports a PCM format, Neuro, both as part of
2009 Jun 04
0
libogg++ release 1.1.0
Hi Elaine, I flipped through some of the code but wasn't really about to determine this: Do you also support Skeleton in libogg++ ? If you are creating multitrack Ogg files, they should contain a skeleton track to identify the different contained tracks. http://wiki.xiph.org/OggSkeleton And if the files aren't audio or video files, you should then use the extension .ogx
2009 Jun 05
2
libogg++ release 1.1.0
(Sorry, Sylvia, about the duplicate, hit the wrong reply button.) On Fri, 2009-06-05 at 08:07 +1000, Silvia Pfeiffer wrote: > Hi Elaine, > > I flipped through some of the code but wasn't really about to > determine this: Do you also support Skeleton in libogg++ ? Hi, Silvia. I studied your multi-track work when I was working on ALingA. It was a valuable guide. No, libogg++ tries
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2007 Jun 28
6
[patch 0/6] resend: guest page hinting version 5.
Greetings, after Carsten pitched CMM2 on the kvm mini summit here is a repost of version 5 of the guest page hinting patches. The code is still the same but has been adapted to the latest git level. -- blue skies, Martin. "Reality continues to ruin my life." - Calvin.
2007 May 11
6
[patch 0/6] [rfc] guest page hinting version 5
After way to many months here is the fifth version of the guest page hinting patches. Compared to version four a few improvements have been added: - Avoid page_host_discards() calls outside of page-states.h - The discard list is now implemented via the page_free_discarded hook and architecture specific code. - PG_state_change page flag has been replaced with architecture specficic
2007 May 11
6
[patch 0/6] [rfc] guest page hinting version 5
After way to many months here is the fifth version of the guest page hinting patches. Compared to version four a few improvements have been added: - Avoid page_host_discards() calls outside of page-states.h - The discard list is now implemented via the page_free_discarded hook and architecture specific code. - PG_state_change page flag has been replaced with architecture specficic