lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Wed, 21 Apr 2021 08:44:55 +0300
From:   Leon Romanovsky <leon@...nel.org>
To:     M Chetan Kumar <m.chetan.kumar@...el.com>
Cc:     netdev@...r.kernel.org, linux-wireless@...r.kernel.org,
        johannes@...solutions.net, krishna.c.sudi@...el.com,
        linuxwwan@...el.com
Subject: Re: [PATCH V2 01/16] net: iosm: entry point

On Tue, Apr 20, 2021 at 09:42:55PM +0530, M Chetan Kumar wrote:
> 1) Register IOSM driver with kernel to manage Intel WWAN PCIe
>    device(PCI_VENDOR_ID_INTEL, INTEL_CP_DEVICE_7560_ID).
> 2) Exposes the EP PCIe device capability to Host PCIe core.
> 3) Initializes PCIe EP configuration and defines PCIe driver probe, remove
>    and power management OPS.
> 4) Allocate and map(dma) skb memory for data communication from device to
>    kernel and vice versa.
> 
> Signed-off-by: M Chetan Kumar <m.chetan.kumar@...el.com>
> ---
> v2:
> * Implement module_init() & exit() callbacks for rtnl_link.
> * Documentation correction for function signature.
> * Fix coverity warnings.
> ---
>  drivers/net/wwan/iosm/iosm_ipc_pcie.c | 588 ++++++++++++++++++++++++++
>  drivers/net/wwan/iosm/iosm_ipc_pcie.h | 211 +++++++++
>  2 files changed, 799 insertions(+)
>  create mode 100644 drivers/net/wwan/iosm/iosm_ipc_pcie.c
>  create mode 100644 drivers/net/wwan/iosm/iosm_ipc_pcie.h
> 
> diff --git a/drivers/net/wwan/iosm/iosm_ipc_pcie.c b/drivers/net/wwan/iosm/iosm_ipc_pcie.c
> new file mode 100644
> index 000000000000..8a3a8cd68a6a
> --- /dev/null
> +++ b/drivers/net/wwan/iosm/iosm_ipc_pcie.c
> @@ -0,0 +1,588 @@
> +// SPDX-License-Identifier: GPL-2.0-only
> +/*
> + * Copyright (C) 2020-21 Intel Corporation.
> + */
> +
> +#include <linux/acpi.h>
> +#include <linux/bitfield.h>
> +#include <linux/module.h>
> +#include <net/rtnetlink.h>
> +
> +#include "iosm_ipc_imem.h"
> +#include "iosm_ipc_pcie.h"
> +#include "iosm_ipc_protocol.h"
> +
> +#define DRV_AUTHOR "Intel Corporation <linuxwwan@...el.com>"

Driver author can't be a company. It needs to be a person.

Thanks

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ