[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <61D8D34BB13CFE408D154529C120E079138CB5@eseldmw101.eemea.ericsson.se>
Date: Sat, 27 Feb 2010 11:36:56 +0100
From: Sjur Brændeland <sjur.brandeland@...ricsson.com>
To: "Marcel Holtmann" <marcel@...tmann.org>
Cc: <netdev@...r.kernel.org>, <davem@...emloft.net>,
"Daniel Martensson" <daniel.martensson@...ricsson.com>,
<kaber@...sh.net>, <stefano.babic@...ic.homelinux.org>,
<randy.dunlap@...cle.com>
Subject: SV: [PATCH net-next-2.6 v4 02/12] net-caif: add CAIF socket and configuration headers
Hi Marcel.
Thank you for your feedback.
Marcel Holtmann wrote:
>Hi Sjur,
>
>I think most issues have been resolved and this should be ready for
>merging, but I am bit worried about the userspace API. Can we start a
>bit smaller and extend it later? Especially the socket options worry me
>a bit.
>Dave, personally I would prefer if we can merge this without these
>socket options. Since I am really missing the need for it.
As mentioned in previous mail to Dave, I will be off traveling,
so I will not be able to send out anything new in the next four days.
Which means that we will miss the next pull of net-next-2.6.
>> +/**
>> + * enum caif_socket_opts - CAIF option values for getsockopt and setsockopt.
>> + *
>> + * @CAIFSO_LINK_SELECT: Selector used if multiple CAIF Link layers are
>> + * available. Either a high bandwidth
>> + * link can be selected (CAIF_LINK_HIGH_BANDW) or
>> + * or a low latency link (CAIF_LINK_LOW_LATENCY).
>> + * This option is of type u_int32_t.
>> + * Alternatively SO_BINDTODEVICE can be used.
>> + *
>> + * @CAIFSO_REQ_PARAM: Used to set the request parameters for a
>> + * utility channel. (struct caif_param). This
>> + * option must be set before connecting.
>> + *
>> + * @CAIFSO_RSP_PARAM: Gets the request parameters for a utility
It is a typo in the documentation here, s/request/response/. Sorry for the confusion.
>> + * channel. (struct caif_param). This option
>> + * is valid after a successful connect.
>
>These two more look like a combination of setsockopt/getsockopt instead
>of two socket options. Maybe it is leftover from a ioctl interface, but
>socket options work differently.
No the REQ_PARAM and RSP_PARAM are not just reading/writing the same option.
The CAIF protocol defines "utility channels". This channels are "pipes" between
processes on the modem and host side.
The CAIF protocol defines extra request parameters (REQ_PARAM) for Utility
channels that can be sent from the client to the server in the connect request.
The server may also send response parameters (RSP_PARAM) in the connect response message.
These socket options are used for setting the request parameters and reading the response
parameters.
I think we need these socket options, otherwise we would not be able to support
the CAIF Utility Links.
>
>Also the caif_param struct seems pointless. Socket options contain a
>length parameter anyway. So why bother with a struct that is just a data
>field and a length field.
Yes, I see your point here, I could have skipped this type.
>
>> + * @CAIFSO_CHANNEL_ID: Gets the channel id on a CAIF Channel.
>> + * This option is valid after a successful connect.
>> + * ( u_int32_t)
>
>Where is this used and what is it used for? Is this something that
>shouldn't be better part of the sockaddr structure. Then you can use
>getpeername for it?
CAIF on the modem side generates unique channel IDs for each CAIF Channel.
This ID identifies the CAIF Channel both on Host and Modem side.
This socket option gives the Linux Side client a possibility to get hold
of this client id.
This would typically be used for application logging purposes in order to be able to
correlate host side logs and modem side logs. I could move this to debugfs...
Personally I would prefer to keep it, but it could be skipped.
>> + * @CAIFSO_NEXT_PAKCET_LEN: Gets the size of next received packet.
>> + * Value is 0 if no packet is available.
>> + * This option is valid after a successful connect.
>> + * ( u_int32_t)
>Typo. And why do we need this?
This would be used by a client to see the size of the next message to read, allowing
the client to allocate a buffer of the correct size.
I agree that this option is not vital.
>> + * @CAIFSO_MAX_PAKCET_LEN: Gets the maximum packet size for this
>> + * connection. ( u_int32_t)
>Isn't this more like SO_RCVBUF or SO_SNDBUF.
CAIF protocol on modem side has a limit on one page size (4096) on the link layer.
However different CAIF Channel types and Link Layers will result in different
maximum sizes for each CAIF Channel. This options allows client to see the
maximum CAIF packet size can be used in sendmsg. I guess the SO_SNDBUF would have
slightly different semantic, describing the maximum number of bytes in the hosts send queue.
If we in the future change this protocol limitation, it would be nice for the host client to
have this information dynamically pr channel instead of constants in the clients source code.
BR/Sjur
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists