All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Jan Beulich <JBeulich@suse.com>, David Vrabel <david.vrabel@citrix.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>, <x86@kernel.org>,
	<linux-kernel@vger.kernel.org>, Ingo Molnar <mingo@redhat.com>,
	"H. Peter Anvin" <hpa@zytor.com>,
	<xen-devel@lists.xenproject.org>,
	Thomas Gleixner <tglx@linutronix.de>,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>
Subject: Re: [Xen-devel] [PATCH 3/3] x86/xen: use the maximum MFN to calculate the required DMA mask
Date: Thu, 13 Nov 2014 10:38:31 +0000	[thread overview]
Message-ID: <54648A27.1060907@citrix.com> (raw)
In-Reply-To: <546390FC0200007800046E50@mail.emea.novell.com>

On 12/11/14 15:55, Jan Beulich wrote:
>>>> On 12.11.14 at 16:25, <david.vrabel@citrix.com> wrote:
>> +u64
>> +xen_swiotlb_get_required_mask(struct device *dev)
>> +{
>> +	u64 max_mfn;
>> +
>> +	max_mfn = HYPERVISOR_memory_op(XENMEM_maximum_ram_page, NULL);
>> +
>> +	return DMA_BIT_MASK(fls64(max_mfn << PAGE_SHIFT) + 1);
>> +}
> The value the hypercall returns is exclusive and an unsigned long.

All hypercalls return long, despite lack of clarity, or in some cases,
documentation to the contrary.

Almost all hypercalls need the ability to return errors in the form of
negative numbers, and those which don't should not be treated any
differently.  Furthermore, the overflow conditions for the compat
version of XENMEM_maximum_ram_page specifically truncate to INT_MAX and
INT_MIN as boundaries, making the return value signed.

~Andrew


  parent reply	other threads:[~2014-11-13 10:38 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-12 15:25 [PATCHv2 0/3]: dma,x86,xen: reduce SWIOTLB usage in Xen guests David Vrabel
2014-11-12 15:25 ` [PATCH 1/3] dma, ia64: add dma_get_required_mask_from_max_pfn() David Vrabel
2014-11-12 15:25 ` [PATCH 1/3] dma,ia64: " David Vrabel
2014-11-12 15:25   ` David Vrabel
2014-11-14 15:11   ` [PATCH 1/3] dma, ia64: " Stefano Stabellini
2014-11-14 15:11   ` [Xen-devel] " Stefano Stabellini
2014-11-14 15:11     ` Stefano Stabellini
2014-11-12 15:25 ` [PATCH 2/3] x86: allow dma_get_required_mask() to be overridden David Vrabel
2014-11-13 10:25   ` [Xen-devel] " Jan Beulich
2014-11-13 10:30     ` David Vrabel
2014-11-13 10:30     ` David Vrabel
2014-11-13 10:32     ` [Xen-devel] " Jan Beulich
2014-11-13 10:32     ` Jan Beulich
2014-11-13 10:25   ` Jan Beulich
2014-11-14 15:19   ` Stefano Stabellini
2014-11-14 15:19   ` Stefano Stabellini
2014-11-12 15:25 ` David Vrabel
2014-11-12 15:25 ` [PATCH 3/3] x86/xen: use the maximum MFN to calculate the required DMA mask David Vrabel
2014-11-12 15:25 ` David Vrabel
2014-11-12 15:55   ` [Xen-devel] " Jan Beulich
2014-11-12 16:59     ` David Vrabel
2014-11-12 17:18       ` Jan Beulich
2014-11-12 17:18       ` Jan Beulich
2014-11-12 16:59     ` David Vrabel
2014-11-13  9:57     ` [Xen-devel] " Jan Beulich
2014-11-13  9:57     ` Jan Beulich
2014-11-13 10:38     ` Andrew Cooper [this message]
2014-11-13 10:53       ` Jan Beulich
2014-11-13 10:53       ` [Xen-devel] " Jan Beulich
2014-11-13 10:38     ` Andrew Cooper
2014-11-12 15:55   ` Jan Beulich

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=54648A27.1060907@citrix.com \
    --to=andrew.cooper3@citrix.com \
    --cc=JBeulich@suse.com \
    --cc=boris.ostrovsky@oracle.com \
    --cc=david.vrabel@citrix.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=xen-devel@lists.xenproject.org \
    /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.