public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Francois Romieu <romieu@cogenit.fr>
To: Linux-Kernel <linux-kernel@vger.kernel.org>
Cc: netdev@oss.sgi.com
Subject: Re: RFC: configuring net interfaces
Date: Tue, 3 Apr 2001 10:27:34 +0200	[thread overview]
Message-ID: <20010403102734.A27344@se1.cogenit.fr> (raw)
In-Reply-To: <Pine.LNX.3.96.1010401165413.28121X-100000@mandrakesoft.mandrakesoft.com> <m31yrbce2m.fsf@intrepid.pm.waw.pl>
In-Reply-To: <m31yrbce2m.fsf@intrepid.pm.waw.pl>; from khc@intrepid.pm.waw.pl on Mon, Apr 02, 2001 at 09:10:57PM +0200

Krzysztof Halasa <khc@intrepid.pm.waw.pl> écrit :
[...]
> > Comments welcome.  IMHO domain-specific ioctls are a better direction
> > than the current make-sockios.h-huge-with-new-ioctls approach.
> 
> I think we should separate two things there:
> - the place (files) where SIOCxxx values are defined
> - the way we use ioctl call.

(1) and (2) may be related: 
no sub-ioctl (2) + scattered files (1) = *ouch*

[...]
> you have to call it with:
>         proto = malloc();
>         ifreq.name = "qwe0";
>         ifreq.data = proto;
>         (int*)proto = SIOC_SET_FR_PROTO_PARAMETERS;
>         (fr_protocol)(((int*)proto) + 1).fr_protocol.t391 = 20;
>         (fr_protocol)(((int*)proto) + 1).fr_protocol.n393 = 5;
>         ioctl(s, SIOC_FR_PROTO, &ifreq);

Variant:
	struct sub_req sub;

	sub.fr_protocol.t391 = 20;
	sub.fr_protocol.n293 = 5;
	sub.sub_ioctl = SIOC_SET_FR_PROTO_PARAMETERS;
	ifreq.name = "qwe0";
	ifreq.data = &sub;
	ioctl(s, SIOC_FR_PROTO, &ifreq);

At least it avoids digging at a special position in a structure 
to know the expected operation and the underlying structure.

struc sub_req {
	int sub_ioctl;
	union {
		struct fr_protocol fr_prot;
		...
		struct xx_protocol xx_prot;
	}
}

struct if_req {
	int name;

	struct sub_req sub;
}

It could avoid a flat name-space. Opinion anyone ?

-- 
Ueimor

  reply	other threads:[~2001-04-03  8:28 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <m3itkuq6xt.fsf@intrepid.pm.waw.pl>
2001-03-28 21:24 ` RFC: configuring net interfaces Ivan Passos
2001-03-29  0:11   ` Jeff Garzik
2001-03-28 21:53     ` Ivan Passos
2001-03-29 11:29     ` Krzysztof Halasa
2001-03-30  5:43       ` Jeff Garzik
2001-03-31 22:41         ` Krzysztof Halasa
2001-04-01 22:18           ` Jeff Garzik
2001-04-02 19:10             ` Krzysztof Halasa
2001-04-03  8:27               ` Francois Romieu [this message]
2001-04-03 13:07                 ` Krzysztof Halasa
2001-04-04  8:18                   ` Francois Romieu
2001-03-29 11:24   ` Krzysztof Halasa
     [not found] ` <20010328182729.A16067@se1.cogenit.fr>
2001-03-28 23:03   ` Krzysztof Halasa
2001-03-29  0:13     ` Paul Fulghum
2001-03-29 10:34       ` Krzysztof Halasa
2001-03-29  9:25     ` Francois Romieu
2001-03-29 11:07       ` Krzysztof Halasa
2001-03-29 14:55         ` Paul Fulghum

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20010403102734.A27344@se1.cogenit.fr \
    --to=romieu@cogenit.fr \
    --cc=linux-kernel@vger.kernel.org \
    --cc=netdev@oss.sgi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox