Re: [PATCH] can: virtio-can: cleanups

2023-04-25 Thread Michael S. Tsirkin
On Tue, Apr 25, 2023 at 11:17:20AM +0200, Marc Kleine-Budde wrote:
> On 24.04.2023 17:09:23, Michael S. Tsirkin wrote:
> > On Mon, Apr 24, 2023 at 09:47:58PM +0200, Marc Kleine-Budde wrote:
> > > Address the topics raised in
> > > 
> > > https://lore.kernel.org/20230424-footwear-daily-9339bd0ec428-...@pengutronix.de
> > > 
> > > Signed-off-by: Marc Kleine-Budde 
> > 
> > given base patch is rfc this should be too?
> 
> This is an incremental patch that fixes the topics I raised in the
> review of "[RFC PATCH v2] can: virtio: Initial virtio CAN driver.", see
> linked discussion thread.
> 
> regards,
> Marc

and that's fine, just pls put RFC in the subject.

-- 
MST

___
Virtualization mailing list
Virtualization@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/virtualization


Re: [PATCH] can: virtio-can: cleanups

2023-04-24 Thread Michael S. Tsirkin
On Mon, Apr 24, 2023 at 09:47:58PM +0200, Marc Kleine-Budde wrote:
> Address the topics raised in
> 
> https://lore.kernel.org/20230424-footwear-daily-9339bd0ec428-...@pengutronix.de
> 
> Signed-off-by: Marc Kleine-Budde 

given base patch is rfc this should be too?

> ---
>  drivers/net/can/Makefile|  4 +--
>  drivers/net/can/virtio_can.c| 56 ++---
>  include/uapi/linux/virtio_can.h |  4 +--
>  3 files changed, 28 insertions(+), 36 deletions(-)
> 
> diff --git a/drivers/net/can/Makefile b/drivers/net/can/Makefile
> index e409f61d8e93..19314adaff59 100644
> --- a/drivers/net/can/Makefile
> +++ b/drivers/net/can/Makefile
> @@ -17,8 +17,8 @@ obj-$(CONFIG_CAN_AT91)  += at91_can.o
>  obj-$(CONFIG_CAN_BXCAN)  += bxcan.o
>  obj-$(CONFIG_CAN_CAN327) += can327.o
>  obj-$(CONFIG_CAN_CC770)  += cc770/
> -obj-$(CONFIG_CAN_C_CAN)  += c_can/
>  obj-$(CONFIG_CAN_CTUCANFD)   += ctucanfd/
> +obj-$(CONFIG_CAN_C_CAN)  += c_can/
>  obj-$(CONFIG_CAN_FLEXCAN)+= flexcan/
>  obj-$(CONFIG_CAN_GRCAN)  += grcan.o
>  obj-$(CONFIG_CAN_IFI_CANFD)  += ifi_canfd/
> @@ -30,7 +30,7 @@ obj-$(CONFIG_CAN_PEAK_PCIEFD)   += peak_canfd/
>  obj-$(CONFIG_CAN_SJA1000)+= sja1000/
>  obj-$(CONFIG_CAN_SUN4I)  += sun4i_can.o
>  obj-$(CONFIG_CAN_TI_HECC)+= ti_hecc.o
> -obj-$(CONFIG_CAN_XILINXCAN)  += xilinx_can.o
>  obj-$(CONFIG_CAN_VIRTIO_CAN) += virtio_can.o
> +obj-$(CONFIG_CAN_XILINXCAN)  += xilinx_can.o
>  
>  subdir-ccflags-$(CONFIG_CAN_DEBUG_DEVICES) += -DDEBUG
> diff --git a/drivers/net/can/virtio_can.c b/drivers/net/can/virtio_can.c
> index 23f9c1b6446d..c11a652613d0 100644
> --- a/drivers/net/can/virtio_can.c
> +++ b/drivers/net/can/virtio_can.c
> @@ -312,13 +312,12 @@ static netdev_tx_t virtio_can_start_xmit(struct sk_buff 
> *skb,
>   struct scatterlist sg_in[1];
>   struct scatterlist *sgs[2];
>   unsigned long flags;
> - size_t len;
>   u32 can_flags;
>   int err;
>   netdev_tx_t xmit_ret = NETDEV_TX_OK;
>   const unsigned int hdr_size = offsetof(struct virtio_can_tx_out, sdu);
>  
> - if (can_dropped_invalid_skb(dev, skb))
> + if (can_dev_dropped_skb(dev, skb))
>   goto kick; /* No way to return NET_XMIT_DROP here */
>  
>   /* Virtio CAN does not support error message frames */
> @@ -338,27 +337,25 @@ static netdev_tx_t virtio_can_start_xmit(struct sk_buff 
> *skb,
>  
>   can_tx_msg->tx_out.msg_type = cpu_to_le16(VIRTIO_CAN_TX);
>   can_flags = 0;
> - if (cf->can_id & CAN_EFF_FLAG)
> +
> + if (cf->can_id & CAN_EFF_FLAG) {
>   can_flags |= VIRTIO_CAN_FLAGS_EXTENDED;
> + can_tx_msg->tx_out.can_id = cpu_to_le32(cf->can_id & 
> CAN_EFF_MASK);
> + } else {
> + can_tx_msg->tx_out.can_id = cpu_to_le32(cf->can_id & 
> CAN_SFF_MASK);
> + }
>   if (cf->can_id & CAN_RTR_FLAG)
>   can_flags |= VIRTIO_CAN_FLAGS_RTR;
> + else
> + memcpy(can_tx_msg->tx_out.sdu, cf->data, cf->len);
>   if (can_is_canfd_skb(skb))
>   can_flags |= VIRTIO_CAN_FLAGS_FD;
> +
>   can_tx_msg->tx_out.flags = cpu_to_le32(can_flags);
> - can_tx_msg->tx_out.can_id = cpu_to_le32(cf->can_id & CAN_EFF_MASK);
> - len = cf->len;
> - can_tx_msg->tx_out.length = len;
> - if (len > sizeof(cf->data))
> - len = sizeof(cf->data);
> - if (len > sizeof(can_tx_msg->tx_out.sdu))
> - len = sizeof(can_tx_msg->tx_out.sdu);
> - if (!(can_flags & VIRTIO_CAN_FLAGS_RTR)) {
> - /* Copy if not a RTR frame. RTR frames have a DLC but no 
> payload */
> - memcpy(can_tx_msg->tx_out.sdu, cf->data, len);
> - }
> + can_tx_msg->tx_out.length = cpu_to_le16(cf->len);
>  
>   /* Prepare sending of virtio message */
> - sg_init_one(_out[0], _tx_msg->tx_out, hdr_size + len);
> + sg_init_one(_out[0], _tx_msg->tx_out, hdr_size + cf->len);
>   sg_init_one(_in[0], _tx_msg->tx_in, sizeof(can_tx_msg->tx_in));
>   sgs[0] = sg_out;
>   sgs[1] = sg_in;
> @@ -895,8 +892,8 @@ static int virtio_can_probe(struct virtio_device *vdev)
>   priv->tx_putidx_list =
>   kcalloc(echo_skb_max, sizeof(struct list_head), GFP_KERNEL);
>   if (!priv->tx_putidx_list) {
> - free_candev(dev);
> - return -ENOMEM;
> + err = -ENOMEM;
> + goto on_failure;
>   }
>  
>   INIT_LIST_HEAD(>tx_putidx_free);
> @@ -914,7 +911,6 @@ static int virtio_can_probe(struct virtio_device *vdev)
>   vdev->priv = priv;
>  
>   priv->can.do_set_mode = virtio_can_set_mode;
> - priv->can.state = CAN_STATE_STOPPED;
>   /* Set Virtio CAN supported operations */
>   priv->can.ctrlmode_supported = CAN_CTRLMODE_BERR_REPORTING;
>   if (virtio_has_feature(vdev, VIRTIO_CAN_F_CAN_FD)) {
> @@ -968,11 +964,10 @@ static int virtio_can_probe(struct virtio_device *vdev)
>