Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1500411
| From | Cyrill Gorcunov <gorcunov@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets |
| Date | 2016-10-13 18:20 +0200 |
| Message-ID | <srQTE-5MC-11@gated-at.bofh.it> (permalink) |
| References | (1 earlier) <srkKb-61-19@gated-at.bofh.it> <srlGa-Ku-15@gated-at.bofh.it> <srD0m-4pp-11@gated-at.bofh.it> <srIt4-oQ-3@gated-at.bofh.it> <srQqC-5mY-17@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
On Thu, Oct 13, 2016 at 09:43:57AM -0600, David Ahern wrote:
> On 10/13/16 1:16 AM, Cyrill Gorcunov wrote:
> > On Wed, Oct 12, 2016 at 07:55:04PM -0400, David Miller wrote:
> >> From: Cyrill Gorcunov <gorcunov@gmail.com>
> >> Date: Wed, 12 Oct 2016 09:53:29 +0300
> >>
> >>> I can't rename the field, neither a can use union.
> >>
> >> Remind me again what is wrong with using an anonymous union?
> >
> > Anon union would be a preferred but Eric pointed me that even
> > though it might cause problems (https://patchwork.kernel.org/patch/9353365/)
> >
> > | Note that some programs could fail to compile with the added union
> > | anyway.
> > |
> > | Some gcc versions are unable to compile a static init with an union
> > |
> > | struct inet_diag_req_v2 foo = { .pad = 0, sdiag_family = AF_INET, };
> > |
> > | When I cooked my recent fq commit I simply removed a pad and replaced
> > | it :
> > |
> > | git show fefa569a9d4bc4 -- include
> >
>
> That commit suggests it is acceptable to just rename the
> pad field, which is the simplest approach.
No. In further message Eric points that
| This is a bit different of course, since struct tc_fq_qd_stats is only
| one way : Kernel produces the content and gives it to user space.
and we are simply lucky that we didn't break anything in userspace yet.
IOW, it's not a problem for me simply to
- rename it or,
- use anonymous union
but both options have own problems :/
Also I just thought what if we introduce
struct inet_diag_req_raw_v2 {
__u8 sdiag_family;
__u8 sdiag_protocol;
__u8 idiag_ext;
__u8 sdiag_raw_protocol;
__u32 idiag_states;
struct inet_diag_sockid id;
};
where @sdiag_raw_protocol explicitly stated and
will collide with existing struct inet_diag_req_v2?
This is a hack too of course but at least this
won't break api definitely.
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v6] net: ip, diag -- Add diag interface for raw sockets Cyrill Gorcunov <gorcunov@gmail.com> - 2016-10-06 12:10 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets David Miller <davem@davemloft.net> - 2016-10-12 08:00 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets Cyrill Gorcunov <gorcunov@gmail.com> - 2016-10-12 09:00 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets David Miller <davem@davemloft.net> - 2016-10-13 03:30 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets Cyrill Gorcunov <gorcunov@gmail.com> - 2016-10-13 09:20 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets David Ahern <dsa@cumulusnetworks.com> - 2016-10-13 17:50 +0200
Re: [PATCH v6] net: ip, diag -- Add diag interface for raw sockets Cyrill Gorcunov <gorcunov@gmail.com> - 2016-10-13 18:20 +0200
csiph-web