* [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops
@ 2024-01-26 8:57 Chengwen Feng
2024-01-26 8:57 ` [PATCH 1/2] dma/skeleton: support SG copy ops Chengwen Feng
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Chengwen Feng @ 2024-01-26 8:57 UTC (permalink / raw)
To: thomas, dev; +Cc: gmuthukrishn, tangkunshan
This patchset adds support for SG copy and fill ops. And test passed by
[1].
[1] https://patchwork.dpdk.org/project/dpdk/cover/cover.1700156485.git.gmuthukrishn@marvell.com/
Chengwen Feng (2):
dma/skeleton: support SG copy ops
dma/skeleton: support fill ops
drivers/dma/skeleton/skeleton_dmadev.c | 147 +++++++++++++++++++++++--
drivers/dma/skeleton/skeleton_dmadev.h | 44 ++++++--
2 files changed, 171 insertions(+), 20 deletions(-)
--
2.17.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/2] dma/skeleton: support SG copy ops
2024-01-26 8:57 [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops Chengwen Feng
@ 2024-01-26 8:57 ` Chengwen Feng
2024-03-06 20:48 ` Thomas Monjalon
2024-01-26 8:57 ` [PATCH 2/2] dma/skeleton: support fill ops Chengwen Feng
2024-03-06 20:49 ` [PATCH 0/2] dma/skeleton: add support for SG copy and " Thomas Monjalon
2 siblings, 1 reply; 8+ messages in thread
From: Chengwen Feng @ 2024-01-26 8:57 UTC (permalink / raw)
To: thomas, dev; +Cc: gmuthukrishn, tangkunshan
Add support scatter gather copy.
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
---
drivers/dma/skeleton/skeleton_dmadev.c | 96 ++++++++++++++++++++++++--
drivers/dma/skeleton/skeleton_dmadev.h | 28 ++++++--
2 files changed, 113 insertions(+), 11 deletions(-)
diff --git a/drivers/dma/skeleton/skeleton_dmadev.c b/drivers/dma/skeleton/skeleton_dmadev.c
index eab03852dd..d1d257a064 100644
--- a/drivers/dma/skeleton/skeleton_dmadev.c
+++ b/drivers/dma/skeleton/skeleton_dmadev.c
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2021 HiSilicon Limited
+ * Copyright(c) 2021-2024 HiSilicon Limited
*/
#include <inttypes.h>
@@ -37,10 +37,12 @@ skeldma_info_get(const struct rte_dma_dev *dev, struct rte_dma_info *dev_info,
dev_info->dev_capa = RTE_DMA_CAPA_MEM_TO_MEM |
RTE_DMA_CAPA_SVA |
- RTE_DMA_CAPA_OPS_COPY;
+ RTE_DMA_CAPA_OPS_COPY |
+ RTE_DMA_CAPA_OPS_COPY_SG;
dev_info->max_vchans = 1;
dev_info->max_desc = SKELDMA_MAX_DESC;
dev_info->min_desc = SKELDMA_MIN_DESC;
+ dev_info->max_sges = SKELDMA_MAX_SGES;
return 0;
}
@@ -55,6 +57,49 @@ skeldma_configure(struct rte_dma_dev *dev, const struct rte_dma_conf *conf,
return 0;
}
+static inline void
+do_copy_sg_one(struct rte_dma_sge *src, struct rte_dma_sge *dst, uint16_t nb_dst, uint64_t offset)
+{
+ uint32_t src_off = 0, dst_off = 0;
+ uint32_t copy_len = 0;
+ uint64_t tmp = 0;
+ uint16_t i;
+
+ /* Locate the segment from which the copy is started. */
+ for (i = 0; i < nb_dst; i++) {
+ tmp += dst[i].length;
+ if (offset < tmp) {
+ copy_len = tmp - offset;
+ dst_off = dst[i].length - copy_len;
+ break;
+ }
+ }
+
+ for (/* Use the above index */; i < nb_dst; i++, copy_len = dst[i].length) {
+ copy_len = RTE_MIN(copy_len, src->length - src_off);
+ rte_memcpy((uint8_t *)(uintptr_t)dst[i].addr + dst_off,
+ (uint8_t *)(uintptr_t)src->addr + src_off,
+ copy_len);
+ src_off += copy_len;
+ if (src_off >= src->length)
+ break;
+ dst_off = 0;
+ }
+}
+
+static inline void
+do_copy_sg(struct skeldma_desc *desc)
+{
+ uint64_t offset = 0;
+ uint16_t i;
+
+ for (i = 0; i < desc->copy_sg.nb_src; i++) {
+ do_copy_sg_one(&desc->copy_sg.src[i], desc->copy_sg.dst,
+ desc->copy_sg.nb_dst, offset);
+ offset += desc->copy_sg.src[i].length;
+ }
+}
+
static uint32_t
cpucopy_thread(void *param)
{
@@ -76,9 +121,13 @@ cpucopy_thread(void *param)
rte_delay_us_sleep(SLEEP_US_VAL);
continue;
}
-
hw->zero_req_count = 0;
- rte_memcpy(desc->dst, desc->src, desc->len);
+
+ if (desc->op == SKELDMA_OP_COPY)
+ rte_memcpy(desc->copy.dst, desc->copy.src, desc->copy.len);
+ else if (desc->op == SKELDMA_OP_COPY_SG)
+ do_copy_sg(desc);
+
__atomic_fetch_add(&hw->completed_count, 1, __ATOMIC_RELEASE);
(void)rte_ring_enqueue(hw->desc_completed, (void *)desc);
}
@@ -368,10 +417,42 @@ skeldma_copy(void *dev_private, uint16_t vchan,
ret = rte_ring_dequeue(hw->desc_empty, (void **)&desc);
if (ret)
return -ENOSPC;
- desc->src = (void *)(uintptr_t)src;
- desc->dst = (void *)(uintptr_t)dst;
- desc->len = length;
+ desc->op = SKELDMA_OP_COPY;
+ desc->ridx = hw->ridx;
+ desc->copy.src = (void *)(uintptr_t)src;
+ desc->copy.dst = (void *)(uintptr_t)dst;
+ desc->copy.len = length;
+ if (flags & RTE_DMA_OP_FLAG_SUBMIT)
+ submit(hw, desc);
+ else
+ (void)rte_ring_enqueue(hw->desc_pending, (void *)desc);
+ hw->submitted_count++;
+
+ return hw->ridx++;
+}
+
+static int
+skeldma_copy_sg(void *dev_private, uint16_t vchan,
+ const struct rte_dma_sge *src,
+ const struct rte_dma_sge *dst,
+ uint16_t nb_src, uint16_t nb_dst,
+ uint64_t flags)
+{
+ struct skeldma_hw *hw = dev_private;
+ struct skeldma_desc *desc;
+ int ret;
+
+ RTE_SET_USED(vchan);
+
+ ret = rte_ring_dequeue(hw->desc_empty, (void **)&desc);
+ if (ret)
+ return -ENOSPC;
+ desc->op = SKELDMA_OP_COPY_SG;
desc->ridx = hw->ridx;
+ memcpy(desc->copy_sg.src, src, sizeof(*src) * nb_src);
+ memcpy(desc->copy_sg.dst, dst, sizeof(*dst) * nb_dst);
+ desc->copy_sg.nb_src = nb_src;
+ desc->copy_sg.nb_dst = nb_dst;
if (flags & RTE_DMA_OP_FLAG_SUBMIT)
submit(hw, desc);
else
@@ -491,6 +572,7 @@ skeldma_create(const char *name, struct rte_vdev_device *vdev, int lcore_id)
dev->dev_ops = &skeldma_ops;
dev->fp_obj->dev_private = dev->data->dev_private;
dev->fp_obj->copy = skeldma_copy;
+ dev->fp_obj->copy_sg = skeldma_copy_sg;
dev->fp_obj->submit = skeldma_submit;
dev->fp_obj->completed = skeldma_completed;
dev->fp_obj->completed_status = skeldma_completed_status;
diff --git a/drivers/dma/skeleton/skeleton_dmadev.h b/drivers/dma/skeleton/skeleton_dmadev.h
index 3582db852a..7d32dd5095 100644
--- a/drivers/dma/skeleton/skeleton_dmadev.h
+++ b/drivers/dma/skeleton/skeleton_dmadev.h
@@ -1,20 +1,40 @@
/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2021 HiSilicon Limited
+ * Copyright(c) 2021-2024 HiSilicon Limited
*/
#ifndef SKELETON_DMADEV_H
#define SKELETON_DMADEV_H
+#include <rte_dmadev.h>
#include <rte_ring.h>
#include <rte_thread.h>
#define SKELDMA_ARG_LCORE "lcore"
+#define SKELDMA_MAX_SGES 4
+
+enum skeldma_op {
+ SKELDMA_OP_COPY,
+ SKELDMA_OP_COPY_SG,
+};
+
struct skeldma_desc {
- void *src;
- void *dst;
- uint32_t len;
+ enum skeldma_op op;
uint16_t ridx; /* ring idx */
+
+ union {
+ struct {
+ void *src;
+ void *dst;
+ uint32_t len;
+ } copy;
+ struct {
+ struct rte_dma_sge src[SKELDMA_MAX_SGES];
+ struct rte_dma_sge dst[SKELDMA_MAX_SGES];
+ uint16_t nb_src;
+ uint16_t nb_dst;
+ } copy_sg;
+ };
};
struct skeldma_hw {
--
2.17.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 2/2] dma/skeleton: support fill ops
2024-01-26 8:57 [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops Chengwen Feng
2024-01-26 8:57 ` [PATCH 1/2] dma/skeleton: support SG copy ops Chengwen Feng
@ 2024-01-26 8:57 ` Chengwen Feng
2024-03-06 20:49 ` [PATCH 0/2] dma/skeleton: add support for SG copy and " Thomas Monjalon
2 siblings, 0 replies; 8+ messages in thread
From: Chengwen Feng @ 2024-01-26 8:57 UTC (permalink / raw)
To: thomas, dev; +Cc: gmuthukrishn, tangkunshan
Add support for fill operation.
Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
---
drivers/dma/skeleton/skeleton_dmadev.c | 53 +++++++++++++++++++++++---
drivers/dma/skeleton/skeleton_dmadev.h | 16 +++++---
2 files changed, 59 insertions(+), 10 deletions(-)
diff --git a/drivers/dma/skeleton/skeleton_dmadev.c b/drivers/dma/skeleton/skeleton_dmadev.c
index d1d257a064..48f88f9fc1 100644
--- a/drivers/dma/skeleton/skeleton_dmadev.c
+++ b/drivers/dma/skeleton/skeleton_dmadev.c
@@ -38,7 +38,8 @@ skeldma_info_get(const struct rte_dma_dev *dev, struct rte_dma_info *dev_info,
dev_info->dev_capa = RTE_DMA_CAPA_MEM_TO_MEM |
RTE_DMA_CAPA_SVA |
RTE_DMA_CAPA_OPS_COPY |
- RTE_DMA_CAPA_OPS_COPY_SG;
+ RTE_DMA_CAPA_OPS_COPY_SG |
+ RTE_DMA_CAPA_OPS_FILL;
dev_info->max_vchans = 1;
dev_info->max_desc = SKELDMA_MAX_DESC;
dev_info->min_desc = SKELDMA_MIN_DESC;
@@ -100,8 +101,19 @@ do_copy_sg(struct skeldma_desc *desc)
}
}
+static inline void
+do_fill(struct skeldma_desc *desc)
+{
+ uint8_t *fills = (uint8_t *)&desc->fill.pattern;
+ uint8_t *dst = (uint8_t *)desc->fill.dst;
+ uint32_t i;
+
+ for (i = 0; i < desc->fill.len; i++)
+ dst[i] = fills[i % 8];
+}
+
static uint32_t
-cpucopy_thread(void *param)
+cpuwork_thread(void *param)
{
#define SLEEP_THRESHOLD 10000
#define SLEEP_US_VAL 10
@@ -127,6 +139,8 @@ cpucopy_thread(void *param)
rte_memcpy(desc->copy.dst, desc->copy.src, desc->copy.len);
else if (desc->op == SKELDMA_OP_COPY_SG)
do_copy_sg(desc);
+ else if (desc->op == SKELDMA_OP_FILL)
+ do_fill(desc);
__atomic_fetch_add(&hw->completed_count, 1, __ATOMIC_RELEASE);
(void)rte_ring_enqueue(hw->desc_completed, (void *)desc);
@@ -162,7 +176,7 @@ skeldma_start(struct rte_dma_dev *dev)
* 1) fflush pending/running/completed ring to empty ring.
* 2) init ring idx to zero.
* 3) init running statistics.
- * 4) mark cpucopy task exit_flag to false.
+ * 4) mark cpuwork task exit_flag to false.
*/
fflush_ring(hw, hw->desc_pending);
fflush_ring(hw, hw->desc_running);
@@ -178,9 +192,9 @@ skeldma_start(struct rte_dma_dev *dev)
snprintf(name, sizeof(name), "dma-skel%d", dev->data->dev_id);
ret = rte_thread_create_internal_control(&hw->thread, name,
- cpucopy_thread, dev);
+ cpuwork_thread, dev);
if (ret) {
- SKELDMA_LOG(ERR, "Start cpucopy thread fail!");
+ SKELDMA_LOG(ERR, "Start cpuwork thread fail!");
return -EINVAL;
}
@@ -462,6 +476,34 @@ skeldma_copy_sg(void *dev_private, uint16_t vchan,
return hw->ridx++;
}
+static int
+skeldma_fill(void *dev_private, uint16_t vchan,
+ uint64_t pattern, rte_iova_t dst,
+ uint32_t length, uint64_t flags)
+{
+ struct skeldma_hw *hw = dev_private;
+ struct skeldma_desc *desc;
+ int ret;
+
+ RTE_SET_USED(vchan);
+
+ ret = rte_ring_dequeue(hw->desc_empty, (void **)&desc);
+ if (ret)
+ return -ENOSPC;
+ desc->op = SKELDMA_OP_FILL;
+ desc->ridx = hw->ridx;
+ desc->fill.dst = (void *)(uintptr_t)dst;
+ desc->fill.len = length;
+ desc->fill.pattern = pattern;
+ if (flags & RTE_DMA_OP_FLAG_SUBMIT)
+ submit(hw, desc);
+ else
+ (void)rte_ring_enqueue(hw->desc_pending, (void *)desc);
+ hw->submitted_count++;
+
+ return hw->ridx++;
+}
+
static int
skeldma_submit(void *dev_private, uint16_t vchan)
{
@@ -573,6 +615,7 @@ skeldma_create(const char *name, struct rte_vdev_device *vdev, int lcore_id)
dev->fp_obj->dev_private = dev->data->dev_private;
dev->fp_obj->copy = skeldma_copy;
dev->fp_obj->copy_sg = skeldma_copy_sg;
+ dev->fp_obj->fill = skeldma_fill;
dev->fp_obj->submit = skeldma_submit;
dev->fp_obj->completed = skeldma_completed;
dev->fp_obj->completed_status = skeldma_completed_status;
diff --git a/drivers/dma/skeleton/skeleton_dmadev.h b/drivers/dma/skeleton/skeleton_dmadev.h
index 7d32dd5095..c9bf3153ba 100644
--- a/drivers/dma/skeleton/skeleton_dmadev.h
+++ b/drivers/dma/skeleton/skeleton_dmadev.h
@@ -16,6 +16,7 @@
enum skeldma_op {
SKELDMA_OP_COPY,
SKELDMA_OP_COPY_SG,
+ SKELDMA_OP_FILL,
};
struct skeldma_desc {
@@ -34,14 +35,19 @@ struct skeldma_desc {
uint16_t nb_src;
uint16_t nb_dst;
} copy_sg;
+ struct {
+ void *dst;
+ uint32_t len;
+ uint64_t pattern;
+ } fill;
};
};
struct skeldma_hw {
- int lcore_id; /* cpucopy task affinity core */
+ int lcore_id; /* cpuwork task affinity core */
int socket_id;
- rte_thread_t thread; /* cpucopy task thread */
- volatile int exit_flag; /* cpucopy task exit flag */
+ rte_thread_t thread; /* cpuwork task thread */
+ volatile int exit_flag; /* cpuwork task exit flag */
struct skeldma_desc *desc_mem;
@@ -57,7 +63,7 @@ struct skeldma_hw {
* |get completed |------------------| |
* | | |
* | v v
- * ----------- cpucopy thread working -----------
+ * ----------- cpuwork thread working -----------
* |completed|<-------------------------------| running |
* ----------- -----------
*/
@@ -72,7 +78,7 @@ struct skeldma_hw {
uint16_t last_ridx;
uint64_t submitted_count;
- /* Cache delimiter for cpucopy thread's operation data */
+ /* Cache delimiter for cpuwork thread's operation data */
char cache2 __rte_cache_aligned;
volatile uint32_t zero_req_count;
uint64_t completed_count;
--
2.17.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dma/skeleton: support SG copy ops
2024-01-26 8:57 ` [PATCH 1/2] dma/skeleton: support SG copy ops Chengwen Feng
@ 2024-03-06 20:48 ` Thomas Monjalon
2024-03-07 10:44 ` Ferruh Yigit
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Monjalon @ 2024-03-06 20:48 UTC (permalink / raw)
To: Chengwen Feng; +Cc: dev, gmuthukrishn, tangkunshan
26/01/2024 09:57, Chengwen Feng:
> Add support scatter gather copy.
>
> Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
> ---
> --- a/drivers/dma/skeleton/skeleton_dmadev.c
> +++ b/drivers/dma/skeleton/skeleton_dmadev.c
> @@ -1,5 +1,5 @@
> /* SPDX-License-Identifier: BSD-3-Clause
> - * Copyright(c) 2021 HiSilicon Limited
> + * Copyright(c) 2021-2024 HiSilicon Limited
You should keep first year only.
The rest has no value.
It is just some noise in patches.
Please read this:
https://matija.suklje.name/how-and-why-to-properly-write-copyright-statements-in-your-code#why-not-bump-the-year-on-change
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops
2024-01-26 8:57 [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops Chengwen Feng
2024-01-26 8:57 ` [PATCH 1/2] dma/skeleton: support SG copy ops Chengwen Feng
2024-01-26 8:57 ` [PATCH 2/2] dma/skeleton: support fill ops Chengwen Feng
@ 2024-03-06 20:49 ` Thomas Monjalon
2 siblings, 0 replies; 8+ messages in thread
From: Thomas Monjalon @ 2024-03-06 20:49 UTC (permalink / raw)
To: Chengwen Feng; +Cc: dev, gmuthukrishn, tangkunshan
> Chengwen Feng (2):
> dma/skeleton: support SG copy ops
> dma/skeleton: support fill ops
Applied, thanks.
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dma/skeleton: support SG copy ops
2024-03-06 20:48 ` Thomas Monjalon
@ 2024-03-07 10:44 ` Ferruh Yigit
2024-03-07 13:12 ` Thomas Monjalon
0 siblings, 1 reply; 8+ messages in thread
From: Ferruh Yigit @ 2024-03-07 10:44 UTC (permalink / raw)
To: Thomas Monjalon, Chengwen Feng; +Cc: dev, gmuthukrishn, tangkunshan, techboard
On 3/6/2024 8:48 PM, Thomas Monjalon wrote:
> 26/01/2024 09:57, Chengwen Feng:
>> Add support scatter gather copy.
>>
>> Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
>> ---
>> --- a/drivers/dma/skeleton/skeleton_dmadev.c
>> +++ b/drivers/dma/skeleton/skeleton_dmadev.c
>> @@ -1,5 +1,5 @@
>> /* SPDX-License-Identifier: BSD-3-Clause
>> - * Copyright(c) 2021 HiSilicon Limited
>> + * Copyright(c) 2021-2024 HiSilicon Limited
>
> You should keep first year only.
> The rest has no value.
> It is just some noise in patches.
>
> Please read this:
> https://matija.suklje.name/how-and-why-to-properly-write-copyright-statements-in-your-code#why-not-bump-the-year-on-change
>
Good read, thanks.
+1 to keep the first year only and stop updating it
+1 to drop "All rights reserved." from copyright
Should we document this as a project process to follow?
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] dma/skeleton: support SG copy ops
2024-03-07 10:44 ` Ferruh Yigit
@ 2024-03-07 13:12 ` Thomas Monjalon
2024-03-07 13:15 ` Morten Brørup
0 siblings, 1 reply; 8+ messages in thread
From: Thomas Monjalon @ 2024-03-07 13:12 UTC (permalink / raw)
To: Chengwen Feng, Ferruh Yigit; +Cc: dev, gmuthukrishn, tangkunshan, techboard
07/03/2024 11:44, Ferruh Yigit:
> On 3/6/2024 8:48 PM, Thomas Monjalon wrote:
> > 26/01/2024 09:57, Chengwen Feng:
> >> Add support scatter gather copy.
> >>
> >> Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
> >> ---
> >> --- a/drivers/dma/skeleton/skeleton_dmadev.c
> >> +++ b/drivers/dma/skeleton/skeleton_dmadev.c
> >> @@ -1,5 +1,5 @@
> >> /* SPDX-License-Identifier: BSD-3-Clause
> >> - * Copyright(c) 2021 HiSilicon Limited
> >> + * Copyright(c) 2021-2024 HiSilicon Limited
> >
> > You should keep first year only.
> > The rest has no value.
> > It is just some noise in patches.
> >
> > Please read this:
> > https://matija.suklje.name/how-and-why-to-properly-write-copyright-statements-in-your-code#why-not-bump-the-year-on-change
> >
>
> Good read, thanks.
>
> +1 to keep the first year only and stop updating it
> +1 to drop "All rights reserved." from copyright
>
> Should we document this as a project process to follow?
We need a consensus.
^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH 1/2] dma/skeleton: support SG copy ops
2024-03-07 13:12 ` Thomas Monjalon
@ 2024-03-07 13:15 ` Morten Brørup
0 siblings, 0 replies; 8+ messages in thread
From: Morten Brørup @ 2024-03-07 13:15 UTC (permalink / raw)
To: Thomas Monjalon, Chengwen Feng, Ferruh Yigit
Cc: dev, gmuthukrishn, tangkunshan, techboard
> From: Thomas Monjalon [mailto:thomas@monjalon.net]
> Sent: Thursday, 7 March 2024 14.13
>
> 07/03/2024 11:44, Ferruh Yigit:
> > On 3/6/2024 8:48 PM, Thomas Monjalon wrote:
> > > 26/01/2024 09:57, Chengwen Feng:
> > >> Add support scatter gather copy.
> > >>
> > >> Signed-off-by: Chengwen Feng <fengchengwen@huawei.com>
> > >> ---
> > >> --- a/drivers/dma/skeleton/skeleton_dmadev.c
> > >> +++ b/drivers/dma/skeleton/skeleton_dmadev.c
> > >> @@ -1,5 +1,5 @@
> > >> /* SPDX-License-Identifier: BSD-3-Clause
> > >> - * Copyright(c) 2021 HiSilicon Limited
> > >> + * Copyright(c) 2021-2024 HiSilicon Limited
> > >
> > > You should keep first year only.
> > > The rest has no value.
> > > It is just some noise in patches.
> > >
> > > Please read this:
> > > https://matija.suklje.name/how-and-why-to-properly-write-copyright-
> statements-in-your-code#why-not-bump-the-year-on-change
> > >
> >
> > Good read, thanks.
> >
> > +1 to keep the first year only and stop updating it
> > +1 to drop "All rights reserved." from copyright
> >
> > Should we document this as a project process to follow?
>
> We need a consensus.
Doesn't LF have some standard recommendations for this?
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2024-03-07 13:15 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-26 8:57 [PATCH 0/2] dma/skeleton: add support for SG copy and fill ops Chengwen Feng
2024-01-26 8:57 ` [PATCH 1/2] dma/skeleton: support SG copy ops Chengwen Feng
2024-03-06 20:48 ` Thomas Monjalon
2024-03-07 10:44 ` Ferruh Yigit
2024-03-07 13:12 ` Thomas Monjalon
2024-03-07 13:15 ` Morten Brørup
2024-01-26 8:57 ` [PATCH 2/2] dma/skeleton: support fill ops Chengwen Feng
2024-03-06 20:49 ` [PATCH 0/2] dma/skeleton: add support for SG copy and " Thomas Monjalon
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).