Re: Getting Physical address of a buffer
site_archiver@lists.apple.com Delivered-To: darwin-kernel@lists.apple.com Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=Yo0ea4t6Y8YAKWMGvlDw7wMpxLHuLZv9E4MhTsZuUUg=; b=IxgCD2Kp2BCkDZ4rOseJtbDaWVRvfqYFQplcdjLZqEPfsn4C7G1ZN2c5t0zMboWonG HENupIYH/Szx7oQwGlze63axVwm768Nq8HHgDeXcU1QFwg5ivglGCypJB/bIi4idhsBH Q0cPbUA4byLIIpKz58RSYQoxc2SLNxq0l9gaA= Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=Ym8P3+dxEpoPaN0mKkfwGXFaIhygMkf+nrWoXrAyvD7qhOkv+WWO7u9gSlM/oXUNwY gwBBku2QAMNbcssxA7hkqDbx2Xc/ugNyEWTF8XjkHiK71QkNBj32asja6A+E2uyFej68 pJckGaAeFYxoQLbySHh/FM9uU3w0VAFJFzGkg= terry ? On Thu, Aug 5, 2010 at 11:10 AM, shailesh jain <coolworldofshail@gmail.com> wrote:
Hello again! I have a kernel extension (which is not an IOKit driver) that uses OSMalloc_ KPI to allocate buffer. I pass in OSMT_DEFAULT so that buffers that it returns are wired to memory. I have a use case where in I would like to get physical address of the first byte of the buffer. I understand that buffer will not be contiguous in Physical memory and I am fine with that. Do we have such an interface ---
something like: physAddr = virt_to_phys(buffer); // Gives physical address of first byte of the buffer
-- Shailesh Jain
-- Shailesh Jain _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-kernel mailing list (Darwin-kernel@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-kernel/site_archiver%40lists.a... This email sent to site_archiver@lists.apple.com
participants (1)
-
shailesh jain