search for: pagep

Displaying 19 results from an estimated 19 matches for "pagep".

Did you mean: page
2004 Nov 18
2
(Analog Intercom) PagePal by ATT -- was hooked to a Merlin
I'm replacing a Merlin for a client and they have a PagePal Intercom that I would like to reuse. Here is what I know about it: It has a screw-down wires that goto rj-11 (This was told to me over the phone) that went into one of the Merlin ports. I tried bring it up with fxo_ks and fxo_ls (assuming it was analog and autoanswered) but no luck. I would...
2007 Apr 18
0
[PATCH] lguest: Compile hypervisor.S into the lg module directly
...we've copied it */ +static unsigned long hype_offset(void) +{ + return HYPE_ADDR - (unsigned long)start_hyper_text; } /* This cpu's struct lguest_pages. */ @@ -65,9 +63,15 @@ static __init int map_hypervisor(void) static __init int map_hypervisor(void) { int i, err; - struct page **pagep = hype_page; - - for (i = 0; i < ARRAY_SIZE(hype_page); i++) { + struct page **pagep; + + hype_page = kmalloc(sizeof(hype_page[0])*TOTAL_HYPE_PAGES, GFP_KERNEL); + if (!hype_page) { + err = -ENOMEM; + goto out; + } + + for (i = 0; i < TOTAL_HYPE_PAGES; i++) { unsigned long addr = get_zer...
2007 Apr 18
0
[PATCH] lguest: Compile hypervisor.S into the lg module directly
...we've copied it */ +static unsigned long hype_offset(void) +{ + return HYPE_ADDR - (unsigned long)start_hyper_text; } /* This cpu's struct lguest_pages. */ @@ -65,9 +63,15 @@ static __init int map_hypervisor(void) static __init int map_hypervisor(void) { int i, err; - struct page **pagep = hype_page; - - for (i = 0; i < ARRAY_SIZE(hype_page); i++) { + struct page **pagep; + + hype_page = kmalloc(sizeof(hype_page[0])*TOTAL_HYPE_PAGES, GFP_KERNEL); + if (!hype_page) { + err = -ENOMEM; + goto out; + } + + for (i = 0; i < TOTAL_HYPE_PAGES; i++) { unsigned long addr = get_zer...
2010 Aug 05
3
PageUp/Down in gnome-terminal
Dear all, I am using gnome-terminal to run R, and I noticed that standard PageUp/Down do not work but they do work for other programs within the same terminal window (e.g. irssi). Scroll bar does not work either. I run R using GNU-screen, but it doesn't seem to make any difference. Many thanks Olga ------------------ R version 2.11.1 (2010-05-31) 2010 x86_64 GNU/Linux Ubuntu 10.04.1 LTS
2009 Jul 21
1
[PATCH 1/1] ocfs2: adds mlogs to aops.c -V2
..., .., %llu, %lu)\n", + mapping, pos, len, flags, di_bh->b_blocknr, + mmap_page->index); + ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh); if (ret) { mlog_errno(ret); @@ -1778,7 +1913,8 @@ int ocfs2_write_begin_nolock(struct address_space *mapping, success: *pagep = wc->w_target_page; *fsdata = wc; - return 0; + ret = 0; + goto real_bail; out_quota: if (clusters_to_alloc) vfs_dq_free_space(inode, @@ -1793,6 +1929,8 @@ out: ocfs2_free_alloc_context(data_ac); if (meta_ac) ocfs2_free_alloc_context(meta_ac); +real_bail: + mlog_exit(ret); ret...
2010 Feb 23
0
[PATCH] grant-table: clear page->private in gnttab_copy_grant_page
...| 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/drivers/xen/grant-table.c b/drivers/xen/grant-table.c index f225cb1..6c6f884 100644 --- a/drivers/xen/grant-table.c +++ b/drivers/xen/grant-table.c @@ -875,6 +875,7 @@ int gnttab_copy_grant_page(grant_ref_t ref, struct page **pagep) SetPageForeign(page, gnttab_page_free); ClearPageReserved(page); + page->private = 0UL; page->mapping = NULL; out: -- 1.5.6.5 _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2003 Aug 01
0
*** Self Employed Health Insurance - Free Quotes! gzd kjlg enlh (PR#3608)
...wwhkkj iotl ie laaam ci oavpmqkrgzmmcva rbu></annuli> <announceq></constructorw> L<sympathyq>owe</convenew>st Co<dene>st He</gliddenr>al<slosht>th Pla</bicepsy>ns wi<bloomingtonu>th Fu</houseboati>ll C<expirationo>ove</pagep>rage!<br grieve> Hea<confirma>lth In</wilshires>sur<centrifugated>ance, Pr</deltoidf>escr<cynicg>ipt</antherh>ions, De<conflagrationj>nt</arkk>al, Vi<brantl>sion a</salvez>n<juliex>d Mor</castroc>e!<br wesleyanv>...
2007 Jun 11
5
[PATCH][Linux] gnttab: make dma address conversion logic of gnttab dma arch specific.
...dd4e06c4 include/xen/gnttab.h --- a/include/xen/gnttab.h Sun Jun 10 19:50:32 2007 +0100 +++ b/include/xen/gnttab.h Mon Jun 11 16:13:06 2007 +0900 @@ -103,9 +103,9 @@ void gnttab_grant_foreign_transfer_ref(g unsigned long pfn); int gnttab_copy_grant_page(grant_ref_t ref, struct page **pagep); -maddr_t gnttab_dma_map_page(struct page *page); - -static inline void gnttab_dma_unmap_page(maddr_t mfn) +void __gnttab_dma_map_page(struct page *page, + int (*local_pfn)(struct page *page)); +static inline void __gnttab_dma_unmap_page(struct page *page) { } -- yamahata ___________...
2007 May 09
1
[patch 3/9] lguest: the host code
...her_text; +} + +/* This cpu's struct lguest_pages. */ +static struct lguest_pages *lguest_pages(unsigned int cpu) +{ + return &(((struct lguest_pages *) + (SWITCHER_ADDR + SHARED_SWITCHER_PAGES*PAGE_SIZE))[cpu]); +} + +static __init int map_switcher(void) +{ + int i, err; + struct page **pagep; + + switcher_page = kmalloc(sizeof(switcher_page[0])*TOTAL_SWITCHER_PAGES, + GFP_KERNEL); + if (!switcher_page) { + err = -ENOMEM; + goto out; + } + + for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) { + unsigned long addr = get_zeroed_page(GFP_KERNEL); + if (!addr) { + err = -ENOMEM; + go...
2007 May 09
1
[patch 3/9] lguest: the host code
...her_text; +} + +/* This cpu's struct lguest_pages. */ +static struct lguest_pages *lguest_pages(unsigned int cpu) +{ + return &(((struct lguest_pages *) + (SWITCHER_ADDR + SHARED_SWITCHER_PAGES*PAGE_SIZE))[cpu]); +} + +static __init int map_switcher(void) +{ + int i, err; + struct page **pagep; + + switcher_page = kmalloc(sizeof(switcher_page[0])*TOTAL_SWITCHER_PAGES, + GFP_KERNEL); + if (!switcher_page) { + err = -ENOMEM; + goto out; + } + + for (i = 0; i < TOTAL_SWITCHER_PAGES; i++) { + unsigned long addr = get_zeroed_page(GFP_KERNEL); + if (!addr) { + err = -ENOMEM; + go...
2009 Jul 13
1
[PATCH 1/1] adds mlogs to aops.c
..., .., %llu, %lu)\n", + mapping, pos, len, flags, di_bh->b_blocknr, + mmap_page->index); + ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh); if (ret) { mlog_errno(ret); @@ -1778,7 +1905,8 @@ int ocfs2_write_begin_nolock(struct address_space *mapping, success: *pagep = wc->w_target_page; *fsdata = wc; - return 0; + ret = 0; + goto real_bail; out_quota: if (clusters_to_alloc) vfs_dq_free_space(inode, @@ -1793,6 +1921,8 @@ out: ocfs2_free_alloc_context(data_ac); if (meta_ac) ocfs2_free_alloc_context(meta_ac); +real_bail: + mlog_exit(ret); ret...
2009 Jul 21
1
(no subject)
..., .., %llu, %lu)\n", + mapping, pos, len, flags, di_bh->b_blocknr, + mmap_page->index); + ret = ocfs2_alloc_write_ctxt(&wc, osb, pos, len, di_bh); if (ret) { mlog_errno(ret); @@ -1778,7 +1913,8 @@ int ocfs2_write_begin_nolock(struct address_space *mapping, success: *pagep = wc->w_target_page; *fsdata = wc; - return 0; + ret = 0; + goto real_bail; out_quota: if (clusters_to_alloc) vfs_dq_free_space(inode, @@ -1793,6 +1929,8 @@ out: ocfs2_free_alloc_context(data_ac); if (meta_ac) ocfs2_free_alloc_context(meta_ac); +real_bail: + mlog_exit(ret); ret...
2007 Aug 08
13
[PATCH 0/7] Modify lguest32 to make room for lguest64
Hi all, I've been working on lguest64 and in order to do this, I had to move a lot of the i386 specific out of the way. Well, the lguest64 port is still not ready to display, but before Rusty makes too many changes I would like this in upstream so I don't have to keep repeating my changes :-) So this patch series moves lguest32 out of the way for other archs. -- Steve
2007 Aug 08
13
[PATCH 0/7] Modify lguest32 to make room for lguest64
Hi all, I've been working on lguest64 and in order to do this, I had to move a lot of the i386 specific out of the way. Well, the lguest64 port is still not ready to display, but before Rusty makes too many changes I would like this in upstream so I don't have to keep repeating my changes :-) So this patch series moves lguest32 out of the way for other archs. -- Steve
2007 Aug 08
7
[PATCH 0/5 -v2] Modify lguest32 to make room for lguest64 (version 2)
[ Changes since last version. - Move lg.h to include/asm instead (suggested by Rusty Russel) - All steps of the series compiles (suggested by Stephen Rothwell) - Better ifdef header naming (suggested by Stephen Rothwell) - Added Andi Kleen to CC (forgot to on V1) ] Hi all, I've been working on lguest64 and in order to do this, I had to move a lot of the i386 specific out of the
2007 Aug 08
7
[PATCH 0/5 -v2] Modify lguest32 to make room for lguest64 (version 2)
[ Changes since last version. - Move lg.h to include/asm instead (suggested by Rusty Russel) - All steps of the series compiles (suggested by Stephen Rothwell) - Better ifdef header naming (suggested by Stephen Rothwell) - Added Andi Kleen to CC (forgot to on V1) ] Hi all, I've been working on lguest64 and in order to do this, I had to move a lot of the i386 specific out of the
2019 Jul 24
20
[PATCH 00/12] block/bio, fs: convert put_page() to put_user_page*()
From: John Hubbard <jhubbard at nvidia.com> Hi, This is mostly Jerome's work, converting the block/bio and related areas to call put_user_page*() instead of put_page(). Because I've changed Jerome's patches, in some cases significantly, I'd like to get his feedback before we actually leave him listed as the author (he might want to disown some or all of these). I added a
2019 Jul 24
20
[PATCH 00/12] block/bio, fs: convert put_page() to put_user_page*()
From: John Hubbard <jhubbard at nvidia.com> Hi, This is mostly Jerome's work, converting the block/bio and related areas to call put_user_page*() instead of put_page(). Because I've changed Jerome's patches, in some cases significantly, I'd like to get his feedback before we actually leave him listed as the author (he might want to disown some or all of these). I added a
2008 Dec 22
56
[git patches] Ocfs2 patches for merge window, batch 2/3
Hi, This is the second batch of Ocfs2 patches intended for the merge window. The 1st batch were sent out previously: http://lkml.org/lkml/2008/12/19/280 The bulk of this set is comprised of Jan Kara's patches to add quota support to Ocfs2. Many of the quota patches are to generic code, which I carried to make merging of the Ocfs2 support easier. All of the non-ocfs2 patches should have