All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Fioravante <matthew.fioravante@jhuapl.edu>
To: George Dunlap <George.Dunlap@eu.citrix.com>
Cc: "samuel.thibault@ens-lyon.org" <samuel.thibault@ens-lyon.org>,
	"Ian.Campbell@citrix.com" <Ian.Campbell@citrix.com>,
	"xen-devel@lists.xen.org" <xen-devel@lists.xen.org>
Subject: Re: [PATCH 05/11] add CONFIG_XC conditional
Date: Fri, 28 Sep 2012 09:59:37 -0400	[thread overview]
Message-ID: <5065AD49.7040101@jhuapl.edu> (raw)
In-Reply-To: <CAFLBxZbND=Uer5JuwA3aaz4KSPahLDPeeBkDCCkOo7M84q7OAA@mail.gmail.com>


[-- Attachment #1.1: Type: text/plain, Size: 2828 bytes --]

On 09/28/2012 07:18 AM, George Dunlap wrote:
> On Thu, Sep 27, 2012 at 6:09 PM, Matthew Fioravante
> <matthew.fioravante@jhuapl.edu> wrote:
>> This patch adds a CONFIG_XC option to mini-os, to allow conditional
>> support for libxc for mini-os domains.
>>
>> Signed-off-by: Matthew Fioravante <matthew.fioravante@jhuapl.edu>
>> Acked-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
> Hmm... Samuel said, "Apart from that, Acked-by:", but you didn't
> address the "that" that he mentioned.  In that circumstance, I don't
> think addding the "Acked-by" to the commit message is really
> appropriate -- it implies that the patch was approved as-is, when in
> fact he was only saying that he agreed that these changes were all
> right, but that perhaps there needed to be more.
>
> Can you address his question?
I'll look into it. I assumed Acked-by in the message meant it was
officially acked. Sorry about that.
>  -George
>
>> diff --git a/extras/mini-os/Makefile b/extras/mini-os/Makefile
>> index c425f76..b4236e8 100644
>> --- a/extras/mini-os/Makefile
>> +++ b/extras/mini-os/Makefile
>> @@ -27,6 +27,7 @@ CONFIG_FBFRONT ?= y
>>  CONFIG_KBDFRONT ?= y
>>  CONFIG_CONSFRONT ?= y
>>  CONFIG_XENBUS ?= y
>> +CONFIG_XC ?=y
>>  CONFIG_LWIP ?= $(lwip)
>>
>>  # Export config items as compiler directives
>> diff --git a/extras/mini-os/lib/sys.c b/extras/mini-os/lib/sys.c
>> index 7ddbbf8..6cb97b1 100644
>> --- a/extras/mini-os/lib/sys.c
>> +++ b/extras/mini-os/lib/sys.c
>> @@ -397,6 +397,7 @@ int close(int fd)
>>             return res;
>>         }
>>  #endif
>> +#ifdef CONFIG_XC
>>         case FTYPE_XC:
>>             minios_interface_close_fd(fd);
>>             return 0;
>> @@ -406,6 +407,7 @@ int close(int fd)
>>         case FTYPE_GNTMAP:
>>             minios_gnttab_close_fd(fd);
>>             return 0;
>> +#endif
>>  #ifdef CONFIG_NETFRONT
>>         case FTYPE_TAP:
>>             shutdown_netfront(files[fd].tap.dev);
>> @@ -1195,10 +1197,13 @@ void *mmap(void *start, size_t length, int prot, int flags, int fd, off_t offset
>>
>>      if (fd == -1)
>>          return map_zero(n, 1);
>> +#ifdef CONFIG_XC
>>      else if (files[fd].type == FTYPE_XC) {
>>          unsigned long zero = 0;
>>          return map_frames_ex(&zero, n, 0, 0, 1, DOMID_SELF, NULL, 0);
>> -    } else if (files[fd].type == FTYPE_MEM) {
>> +    }
>> +#endif
>> +    else if (files[fd].type == FTYPE_MEM) {
>>          unsigned long first_mfn = offset >> PAGE_SHIFT;
>>          return map_frames_ex(&first_mfn, n, 0, 1, 1, DOMID_IO, NULL, _PAGE_PRESENT|_PAGE_RW);
>>      } else ASSERT(0);
>> --
>> 1.7.9.5
>>
>>
>> _______________________________________________
>> Xen-devel mailing list
>> Xen-devel@lists.xen.org
>> http://lists.xen.org/xen-devel



[-- Attachment #1.2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 1459 bytes --]

[-- Attachment #2: Type: text/plain, Size: 126 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
http://lists.xen.org/xen-devel

  reply	other threads:[~2012-09-28 13:59 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-27 17:09 [PATCH 01/11] Add ioread/iowrite functions to mini-os Matthew Fioravante
2012-09-27 17:09 ` [PATCH 02/11] add posix io for blkfront Matthew Fioravante
2012-09-28 10:36   ` George Dunlap
2012-09-27 17:09 ` [PATCH 03/11] Add endian, byteswap, and wordsize macros to mini-os Matthew Fioravante
2012-09-28 10:48   ` George Dunlap
2012-09-27 17:09 ` [PATCH 04/11] Disable the mfn_is_ram() check, it doesn't work correctly on all systems Matthew Fioravante
2012-10-02 10:49   ` Ian Campbell
2012-10-02 14:20     ` Matthew Fioravante
2012-09-27 17:09 ` [PATCH 05/11] add CONFIG_XC conditional Matthew Fioravante
2012-09-28 11:18   ` George Dunlap
2012-09-28 13:59     ` Matthew Fioravante [this message]
2012-09-28 15:24       ` Matthew Fioravante
2012-09-28 15:26         ` Matthew Fioravante
2012-09-27 17:10 ` [PATCH 06/11] add select definition to sys/time.h when HAVE_LIBC is defined Matthew Fioravante
2012-09-27 17:10 ` [PATCH 07/11] setup fpu and sse in mini-os Matthew Fioravante
2012-09-27 17:10 ` [PATCH 08/11] add tpmfront, tpm_tis, and tpmback drivers to mini-os Matthew Fioravante
2012-10-02 10:57   ` Ian Campbell
2012-10-02 11:08     ` Ian Jackson
2012-10-02 14:17     ` Matthew Fioravante
2012-10-02 14:44       ` Ian Campbell
2012-09-28 10:16 ` [PATCH 01/11] Add ioread/iowrite functions " George Dunlap
2012-09-28 13:57   ` Matthew Fioravante
2012-09-28 15:39     ` George Dunlap
2012-10-02  9:10     ` Ian Campbell
2012-10-02 14:23       ` Matthew Fioravante

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=5065AD49.7040101@jhuapl.edu \
    --to=matthew.fioravante@jhuapl.edu \
    --cc=George.Dunlap@eu.citrix.com \
    --cc=Ian.Campbell@citrix.com \
    --cc=samuel.thibault@ens-lyon.org \
    --cc=xen-devel@lists.xen.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.