From: Bandan Das <bsd@redhat.com>
To: Gerd Hoffmann <kraxel@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v2 5/5] usb-mtp: Advertise SendObjectInfo for write support
Date: Tue, 13 Feb 2018 14:38:23 -0500 [thread overview]
Message-ID: <jpg7ergfzo0.fsf@linux.bootlegged.copy> (raw)
In-Reply-To: <20180213122017.ware2jke5rfwypgm@sirius.home.kraxel.org> (Gerd Hoffmann's message of "Tue, 13 Feb 2018 13:20:17 +0100")
Gerd Hoffmann <kraxel@redhat.com> writes:
>> +/*
>> + * ObjectInfo dataset received from initiator
>> + * Fields we don't care about are ignored
>> + */
>> +typedef struct {
>> + char __pad1[4];
>
> So, is this really padding or a field we don't care about?
>
> If the latter I'd suggest to give them proper names nevertheless,
> maybe append /* unused */.
>
Ok, will do.
>> +static void utf16_to_str(uint8_t len, uint16_t *arr, char *name)
>> +{
>> + int count;
>> +
>> + for (count = 0; count < len; count++) {
>> + /* Check for valid ascii */
>> + assert(!(arr[count] & 0xFF80));
>> + name[count] = arr[count];
>> + }
>> +}
>
> This should do the reverse of usb_mtp_add_str, i.e. first copy uint16_t
> array to wchar_t array, then use wcstombs to translate it into a
> (multi-)byte string of the current locale.
Ah, this is what I was missing. Thank you for the tip, will fix in the next
version.
Bandan
> cheers,
> Gerd
prev parent reply other threads:[~2018-02-13 19:38 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-02-12 22:27 [Qemu-devel] [PATCH v2 0/5] Initial write support for MTP object Bandan Das
2018-02-12 22:27 ` [Qemu-devel] [PATCH v2 1/5] usb-mtp: Add one more argument when building results Bandan Das
2018-02-12 22:27 ` [Qemu-devel] [PATCH v2 2/5] usb-mtp: print parent path in IN_IGNORED trace fn Bandan Das
2018-02-12 22:27 ` [Qemu-devel] [PATCH v2 3/5] usb-mtp: Support delete of mtp objects Bandan Das
2018-02-13 12:07 ` Gerd Hoffmann
2018-02-13 19:35 ` Bandan Das
2018-02-12 22:27 ` [Qemu-devel] [PATCH v2 4/5] usb-mtp: Introduce write support for MTP objects Bandan Das
2018-02-13 12:10 ` Gerd Hoffmann
2018-02-12 22:27 ` [Qemu-devel] [PATCH v2 5/5] usb-mtp: Advertise SendObjectInfo for write support Bandan Das
2018-02-13 12:20 ` Gerd Hoffmann
2018-02-13 19:38 ` Bandan Das [this message]
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=jpg7ergfzo0.fsf@linux.bootlegged.copy \
--to=bsd@redhat.com \
--cc=kraxel@redhat.com \
--cc=qemu-devel@nongnu.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.