search for: store_page

Displaying 3 results from an estimated 3 matches for "store_page".

2005 Jun 16
9
Re: dom0 bootstrap for xenstore
...,6 +196,34 @@ static int privcmd_ioctl(struct inode *i } break; + case IOCTL_PRIVCMD_INITDOMAIN_STORE: + { + extern int do_xenbus_probe(void*); + + if (xen_start_info.store_evtchn != 0) { + ret = -EINVAL; + break; + } + + /* Allocate page. */ + xen_start_info.store_page = get_zeroed_page(GFP_KERNEL); + if (!xen_start_info.store_page) { + ret = -ENOMEM; + break; + } + + /* Initial connect. Setup channel and page. */ + xen_start_info.store_evtchn = data; + ret = pfn_to_mfn(virt_to_phys((void *)xen_start_info.store_page) + >> PAGE_SHIFT); + + strcpy(...
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...dsi.v_start, v_end); printf(" ENTRY ADDRESS: %08lx\n", dsi.v_kernentry); @@ -261,6 +265,8 @@ start_info->nr_pt_frames = nr_pt_pages; start_info->mfn_list = vphysmap_start; start_info->domain_controller_evtchn = control_evtchn; + start_info->store_page = vstartinfo_start + PAGE_SIZE; + start_info->store_evtchn = store_evtchn; if ( initrd_len != 0 ) { start_info->mod_start = vinitrd_start; @@ -270,6 +276,9 @@ start_info->cmd_line[MAX_CMDLINE-1] = ''\0''; munmap(start_info, PAGE_SIZE);...
2006 Apr 10
1
How to specify Ascending or Descending Option?
Hi, I am accessing records in Stores table as follows in @store object. ============================================= @store_pages, @stores = paginate :stores, :order_by => ''store_rating'', :per_page => 10 ============================================= Now I want that records returned by above objects should be in descending order. How to do this in above statement? PLeaase help me. Thanx Prash --...