[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH 3 of 3] xl: allow for node-wise specification of vcpu pinning
On Thu, 2012-10-18 at 12:23 +0100, Ian Campbell wrote: > On Tue, 2012-10-16 at 18:26 +0100, Dario Faggioli wrote: > > > + isnot = 1; > > + } > > + /* Check if we're dealing with a full node */ > > + if (strstr(toka, "node:") == toka || strstr(toka, "nodes:") == > > toka) { > > Isn't strstr(FOO, "thing") == FOO just an expensive way of writing > strncmp(FOO, "ting", sizeof(...))? > Mmm... what I wanted was to make sure that "thing" not only is part of FOO, but that also is the very beginning of that same string. That's why I exploited the fact that strstr() returns a pointer to the beginning of the substring "thing" within FOO. Now that you mentioned it, I think that I actually can achieve the same with strncmp, limiting the comparison at strlen("thing"). If that was what you meant, the answer is yes, I can do that (and I agree it's probably better). Thanks for looking into this, Dario -- <<This happens because I choose it to happen!>> (Raistlin Majere) ----------------------------------------------------------------- Dario Faggioli, Ph.D, http://retis.sssup.it/people/faggioli Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK) Attachment:
signature.asc _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |