From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLZ7U-0006W8-B0 for qemu-devel@nongnu.org; Wed, 11 Feb 2015 10:22:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YLZ7R-0003Xo-6R for qemu-devel@nongnu.org; Wed, 11 Feb 2015 10:22:28 -0500 Received: from mail.codeweavers.com ([216.251.189.131]:50171) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YLZ7R-0003WO-2N for qemu-devel@nongnu.org; Wed, 11 Feb 2015 10:22:25 -0500 Received: from jwhite.mn.codeweavers.com ([10.69.137.101]) by mail.codeweavers.com with esmtpsa (TLS1.2:DHE_RSA_AES_128_CBC_SHA1:128) (Exim 4.80) (envelope-from ) id 1YLZ7K-00014c-Cd for qemu-devel@nongnu.org; Wed, 11 Feb 2015 09:22:18 -0600 Message-ID: <54DB73AA.4040302@codeweavers.com> Date: Wed, 11 Feb 2015 09:22:18 -0600 From: Jeremy White MIME-Version: 1.0 References: <1421768311-9864-1-git-send-email-jwhite@codeweavers.com> In-Reply-To: <1421768311-9864-1-git-send-email-jwhite@codeweavers.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/4] Add support for passthru cards to libcacard List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Ping? Anything I can do to get review/motion on these patches? Cheers, Jeremy On 01/20/2015 09:38 AM, Jeremy White wrote: > This differs from v1 by: > * checkpatch review > * Patch series, instead of one patch > * Remove internal queue in favor of relying on thread safety of pcsclite > * Remove glib from configure > * Use glib thread and allocation functions > > Jeremy White (4): > Add a configure check for libpcsclite, and an option to enable or > disable it. > Add a VCARD_DIRECT implemention to the libcacard smartcard support. > Enable support for passthru (e.g. direct to pcsc) smart cards in > the emul_options entry point in libcacard. > Remove the (broken) passthru option. > > Makefile.objs | 5 + > configure | 38 ++++ > libcacard/capcsc.c | 488 +++++++++++++++++++++++++++++++++++++++++++ > libcacard/capcsc.h | 18 ++ > libcacard/libcacard.syms | 1 + > libcacard/vcard.c | 2 +- > libcacard/vcard.h | 2 +- > libcacard/vcard_emul_nss.c | 29 ++- > libcacard/vcard_emul_type.c | 3 +- > libcacard/vscclient.c | 16 +- > 10 files changed, 585 insertions(+), 17 deletions(-) > create mode 100644 libcacard/capcsc.c > create mode 100644 libcacard/capcsc.h >