From: "strongerwill" <strongerwill@gmail.com>
To: xen-devel <xen-devel@lists.xensource.com>
Subject: a question about count_info
Date: Thu, 5 Aug 2010 13:39:52 +0800 [thread overview]
Message-ID: <201008051339503427988@gmail.com> (raw)
[-- Attachment #1.1: Type: text/plain, Size: 1611 bytes --]
Hi guys:
I am working on Xen 4.0.0. In my project, I need to know the reference number of a paticular page. But I found the result do not match what I think. I need your help.
For example, I allocate a buffer in kernel (dom0)
char * buf = kmalloc( 4096, ...);
Then I use my designed hypercall to read the count_info like this way:
// add is the location of the buffer
l1_pgentry_t nl1e = guest_map_l1e(current, add, &tmp);
unsigned long pfn = 0, mfn = 0;
p2m_type_t p2mt = 0;
struct page_info *page = NULL;
pfn = l1e_get_pfn(nl1e);
mfn = mfn_x( gfn_to_mfn( current->domain, pfn, &p2mt ) );
debug_trace(printk("pfn %lx, mfn %lx, p2mt %x nl1e.l1 %llx\n", pfn, mfn, p2mt, nl1e.l1));
// here I check the validation of mfn, then try to get page
page = mfn_to_page(mfn);
debug_trace(printk("page count %lx, marked count %lx, page typeinfo %lx\n",
page->count_info, page->count_info & PGC_count_mask, page->u.inuse.type_info));
the output likes this:
pfn 5a4d0, mfn 5a4d0, p2mt 1 nl1e.l1 800000005a4d0063
page count 80000002, marked count 2, page typeinfo 74000001
When I allocate memory using vmalloc
the output likes this:
pfn 351ed, mfn 351ed, p2mt 1 nl1e.l1 80000000351ed063
page count 80000003, marked count 3, page typeinfo 74000002
previously I think the referece number (count_info) of these new allocated buffers should be "1". Now the output confuses me. Any one can explain this?
Thanks very much
Yueqiang
2010-08-05
strongerwill
[-- Attachment #1.2: Type: text/html, Size: 4295 bytes --]
[-- Attachment #2: Type: text/plain, Size: 138 bytes --]
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
reply other threads:[~2010-08-05 5:39 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=201008051339503427988@gmail.com \
--to=strongerwill@gmail.com \
--cc=xen-devel@lists.xensource.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.