fb7f99efe2
Unmaintained is a name which on multiple occasions have seen lead to confusion with people having the impression that unmaintained is for all unmaintained devices, which is not how we're really using it. Many devices in testing do not actually have a maintainer, yet there has been no push to move these out of there and into unmaintained. I think this is a result of that unmaintained was introduced not to keep unmaintained ports but rather a place to store ports that have a better replacement but where the inferior one still holds some sort of value, such as for debugging purposes. These ports also are not necessarily entirely unmaintained and see more fixes than many ports in testing. While one approach to solving this problem could be to simply moving all unmaintained ports to unmaintained, I think this comes with some problems: It would require an initial effort to figure out which ports are indeed unmaintained and which just don't have a maintained noted in the package, and given how many ports there are in testing this would be a big endeavour. It would also require continuous work on moving ports into unmaintained as the maintainers go silent if we are to keep testing and unmaintained's state consistent with reality. Additionally, just because a port doesn't have a maintainer on paper doens't mean that there aren't people who aren't willing to fix it up if there are issues that arise. As such, I think the way to go is renaming unmaintained to better reflect the original intent. Thanks to Luca Weiss for suggesting "archive", and to Arnav Singh for suggesting that "archived" would match the other category names better.
29 lines
1 KiB
Diff
29 lines
1 KiB
Diff
From da446f42d69d35139b8caddb74677c7399a92139 Mon Sep 17 00:00:00 2001
|
|
From: Alexey Min <alexey.min@gmail.com>
|
|
Date: Fri, 26 Oct 2018 19:31:15 +0300
|
|
Subject: [PATCH 3/6] Fix xt_connbytes compile warning
|
|
|
|
this netfilter option is needed for ubports
|
|
---
|
|
net/netfilter/xt_connbytes.c | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/net/netfilter/xt_connbytes.c b/net/netfilter/xt_connbytes.c
|
|
index e595e07a759..cf58b1977e0 100644
|
|
--- a/net/netfilter/xt_connbytes.c
|
|
+++ b/net/netfilter/xt_connbytes.c
|
|
@@ -26,7 +26,10 @@ connbytes_mt(const struct sk_buff *skb, struct xt_action_param *par)
|
|
u_int64_t what = 0; /* initialize to make gcc happy */
|
|
u_int64_t bytes = 0;
|
|
u_int64_t pkts = 0;
|
|
- const struct nf_conn_counter *counters;
|
|
+ /* const struct nf_conn_counter *counters; */
|
|
+ /* warning: passing argument 1 of 'atomic64_read' discards 'const' qualifier from pointer target type */
|
|
+ /* warnings are treated as errors - remove constness */
|
|
+ struct nf_conn_counter *counters;
|
|
|
|
ct = nf_ct_get(skb, &ctinfo);
|
|
if (!ct)
|
|
--
|
|
2.21.0
|
|
|