mirror of
https://github.com/tbsdtv/linux_media.git
synced 2025-07-23 04:33:26 +02:00
docs: networking: convert lapb-module.txt to ReST
- add SPDX header; - adjust title markup; - mark code blocks and literals as such; - mark tables as such; - adjust identation, whitespaces and blank lines; - add to networking/index.rst. Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
10ebb22137
commit
40e79150c1
@@ -75,6 +75,7 @@ Contents:
|
|||||||
ipvs-sysctl
|
ipvs-sysctl
|
||||||
kcm
|
kcm
|
||||||
l2tp
|
l2tp
|
||||||
|
lapb-module
|
||||||
|
|
||||||
.. only:: subproject and html
|
.. only:: subproject and html
|
||||||
|
|
||||||
|
@@ -1,8 +1,14 @@
|
|||||||
The Linux LAPB Module Interface 1.3
|
.. SPDX-License-Identifier: GPL-2.0
|
||||||
|
|
||||||
Jonathan Naylor 29.12.96
|
===============================
|
||||||
|
The Linux LAPB Module Interface
|
||||||
|
===============================
|
||||||
|
|
||||||
Changed (Henner Eisen, 2000-10-29): int return value for data_indication()
|
Version 1.3
|
||||||
|
|
||||||
|
Jonathan Naylor 29.12.96
|
||||||
|
|
||||||
|
Changed (Henner Eisen, 2000-10-29): int return value for data_indication()
|
||||||
|
|
||||||
The LAPB module will be a separately compiled module for use by any parts of
|
The LAPB module will be a separately compiled module for use by any parts of
|
||||||
the Linux operating system that require a LAPB service. This document
|
the Linux operating system that require a LAPB service. This document
|
||||||
@@ -32,16 +38,16 @@ LAPB Initialisation Structure
|
|||||||
|
|
||||||
This structure is used only once, in the call to lapb_register (see below).
|
This structure is used only once, in the call to lapb_register (see below).
|
||||||
It contains information about the device driver that requires the services
|
It contains information about the device driver that requires the services
|
||||||
of the LAPB module.
|
of the LAPB module::
|
||||||
|
|
||||||
struct lapb_register_struct {
|
struct lapb_register_struct {
|
||||||
void (*connect_confirmation)(int token, int reason);
|
void (*connect_confirmation)(int token, int reason);
|
||||||
void (*connect_indication)(int token, int reason);
|
void (*connect_indication)(int token, int reason);
|
||||||
void (*disconnect_confirmation)(int token, int reason);
|
void (*disconnect_confirmation)(int token, int reason);
|
||||||
void (*disconnect_indication)(int token, int reason);
|
void (*disconnect_indication)(int token, int reason);
|
||||||
int (*data_indication)(int token, struct sk_buff *skb);
|
int (*data_indication)(int token, struct sk_buff *skb);
|
||||||
void (*data_transmit)(int token, struct sk_buff *skb);
|
void (*data_transmit)(int token, struct sk_buff *skb);
|
||||||
};
|
};
|
||||||
|
|
||||||
Each member of this structure corresponds to a function in the device driver
|
Each member of this structure corresponds to a function in the device driver
|
||||||
that is called when a particular event in the LAPB module occurs. These will
|
that is called when a particular event in the LAPB module occurs. These will
|
||||||
@@ -54,19 +60,19 @@ LAPB Parameter Structure
|
|||||||
|
|
||||||
This structure is used with the lapb_getparms and lapb_setparms functions
|
This structure is used with the lapb_getparms and lapb_setparms functions
|
||||||
(see below). They are used to allow the device driver to get and set the
|
(see below). They are used to allow the device driver to get and set the
|
||||||
operational parameters of the LAPB implementation for a given connection.
|
operational parameters of the LAPB implementation for a given connection::
|
||||||
|
|
||||||
struct lapb_parms_struct {
|
struct lapb_parms_struct {
|
||||||
unsigned int t1;
|
unsigned int t1;
|
||||||
unsigned int t1timer;
|
unsigned int t1timer;
|
||||||
unsigned int t2;
|
unsigned int t2;
|
||||||
unsigned int t2timer;
|
unsigned int t2timer;
|
||||||
unsigned int n2;
|
unsigned int n2;
|
||||||
unsigned int n2count;
|
unsigned int n2count;
|
||||||
unsigned int window;
|
unsigned int window;
|
||||||
unsigned int state;
|
unsigned int state;
|
||||||
unsigned int mode;
|
unsigned int mode;
|
||||||
};
|
};
|
||||||
|
|
||||||
T1 and T2 are protocol timing parameters and are given in units of 100ms. N2
|
T1 and T2 are protocol timing parameters and are given in units of 100ms. N2
|
||||||
is the maximum number of tries on the link before it is declared a failure.
|
is the maximum number of tries on the link before it is declared a failure.
|
||||||
@@ -78,11 +84,14 @@ link.
|
|||||||
The mode variable is a bit field used for setting (at present) three values.
|
The mode variable is a bit field used for setting (at present) three values.
|
||||||
The bit fields have the following meanings:
|
The bit fields have the following meanings:
|
||||||
|
|
||||||
|
====== =================================================
|
||||||
Bit Meaning
|
Bit Meaning
|
||||||
|
====== =================================================
|
||||||
0 LAPB operation (0=LAPB_STANDARD 1=LAPB_EXTENDED).
|
0 LAPB operation (0=LAPB_STANDARD 1=LAPB_EXTENDED).
|
||||||
1 [SM]LP operation (0=LAPB_SLP 1=LAPB=MLP).
|
1 [SM]LP operation (0=LAPB_SLP 1=LAPB=MLP).
|
||||||
2 DTE/DCE operation (0=LAPB_DTE 1=LAPB_DCE)
|
2 DTE/DCE operation (0=LAPB_DTE 1=LAPB_DCE)
|
||||||
3-31 Reserved, must be 0.
|
3-31 Reserved, must be 0.
|
||||||
|
====== =================================================
|
||||||
|
|
||||||
Extended LAPB operation indicates the use of extended sequence numbers and
|
Extended LAPB operation indicates the use of extended sequence numbers and
|
||||||
consequently larger window sizes, the default is standard LAPB operation.
|
consequently larger window sizes, the default is standard LAPB operation.
|
||||||
@@ -99,8 +108,9 @@ Functions
|
|||||||
|
|
||||||
The LAPB module provides a number of function entry points.
|
The LAPB module provides a number of function entry points.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_register(void *token, struct lapb_register_struct);
|
int lapb_register(void *token, struct lapb_register_struct);
|
||||||
|
|
||||||
This must be called before the LAPB module may be used. If the call is
|
This must be called before the LAPB module may be used. If the call is
|
||||||
successful then LAPB_OK is returned. The token must be a unique identifier
|
successful then LAPB_OK is returned. The token must be a unique identifier
|
||||||
@@ -111,33 +121,42 @@ For multiple LAPB links in a single device driver, multiple calls to
|
|||||||
lapb_register must be made. The format of the lapb_register_struct is given
|
lapb_register must be made. The format of the lapb_register_struct is given
|
||||||
above. The return values are:
|
above. The return values are:
|
||||||
|
|
||||||
|
============= =============================
|
||||||
LAPB_OK LAPB registered successfully.
|
LAPB_OK LAPB registered successfully.
|
||||||
LAPB_BADTOKEN Token is already registered.
|
LAPB_BADTOKEN Token is already registered.
|
||||||
LAPB_NOMEM Out of memory
|
LAPB_NOMEM Out of memory
|
||||||
|
============= =============================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_unregister(void *token);
|
int lapb_unregister(void *token);
|
||||||
|
|
||||||
This releases all the resources associated with a LAPB link. Any current
|
This releases all the resources associated with a LAPB link. Any current
|
||||||
LAPB link will be abandoned without further messages being passed. After
|
LAPB link will be abandoned without further messages being passed. After
|
||||||
this call, the value of token is no longer valid for any calls to the LAPB
|
this call, the value of token is no longer valid for any calls to the LAPB
|
||||||
function. The valid return values are:
|
function. The valid return values are:
|
||||||
|
|
||||||
|
============= ===============================
|
||||||
LAPB_OK LAPB unregistered successfully.
|
LAPB_OK LAPB unregistered successfully.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
|
============= ===============================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_getparms(void *token, struct lapb_parms_struct *parms);
|
int lapb_getparms(void *token, struct lapb_parms_struct *parms);
|
||||||
|
|
||||||
This allows the device driver to get the values of the current LAPB
|
This allows the device driver to get the values of the current LAPB
|
||||||
variables, the lapb_parms_struct is described above. The valid return values
|
variables, the lapb_parms_struct is described above. The valid return values
|
||||||
are:
|
are:
|
||||||
|
|
||||||
|
============= =============================
|
||||||
LAPB_OK LAPB getparms was successful.
|
LAPB_OK LAPB getparms was successful.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
|
============= =============================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_setparms(void *token, struct lapb_parms_struct *parms);
|
int lapb_setparms(void *token, struct lapb_parms_struct *parms);
|
||||||
|
|
||||||
This allows the device driver to set the values of the current LAPB
|
This allows the device driver to set the values of the current LAPB
|
||||||
variables, the lapb_parms_struct is described above. The values of t1timer,
|
variables, the lapb_parms_struct is described above. The values of t1timer,
|
||||||
@@ -145,42 +164,54 @@ t2timer and n2count are ignored, likewise changing the mode bits when
|
|||||||
connected will be ignored. An error implies that none of the values have
|
connected will be ignored. An error implies that none of the values have
|
||||||
been changed. The valid return values are:
|
been changed. The valid return values are:
|
||||||
|
|
||||||
|
============= =================================================
|
||||||
LAPB_OK LAPB getparms was successful.
|
LAPB_OK LAPB getparms was successful.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
LAPB_INVALUE One of the values was out of its allowable range.
|
LAPB_INVALUE One of the values was out of its allowable range.
|
||||||
|
============= =================================================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_connect_request(void *token);
|
int lapb_connect_request(void *token);
|
||||||
|
|
||||||
Initiate a connect using the current parameter settings. The valid return
|
Initiate a connect using the current parameter settings. The valid return
|
||||||
values are:
|
values are:
|
||||||
|
|
||||||
|
============== =================================
|
||||||
LAPB_OK LAPB is starting to connect.
|
LAPB_OK LAPB is starting to connect.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
LAPB_CONNECTED LAPB module is already connected.
|
LAPB_CONNECTED LAPB module is already connected.
|
||||||
|
============== =================================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_disconnect_request(void *token);
|
int lapb_disconnect_request(void *token);
|
||||||
|
|
||||||
Initiate a disconnect. The valid return values are:
|
Initiate a disconnect. The valid return values are:
|
||||||
|
|
||||||
|
================= ===============================
|
||||||
LAPB_OK LAPB is starting to disconnect.
|
LAPB_OK LAPB is starting to disconnect.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
LAPB_NOTCONNECTED LAPB module is not connected.
|
LAPB_NOTCONNECTED LAPB module is not connected.
|
||||||
|
================= ===============================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_data_request(void *token, struct sk_buff *skb);
|
int lapb_data_request(void *token, struct sk_buff *skb);
|
||||||
|
|
||||||
Queue data with the LAPB module for transmitting over the link. If the call
|
Queue data with the LAPB module for transmitting over the link. If the call
|
||||||
is successful then the skbuff is owned by the LAPB module and may not be
|
is successful then the skbuff is owned by the LAPB module and may not be
|
||||||
used by the device driver again. The valid return values are:
|
used by the device driver again. The valid return values are:
|
||||||
|
|
||||||
|
================= =============================
|
||||||
LAPB_OK LAPB has accepted the data.
|
LAPB_OK LAPB has accepted the data.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
LAPB_NOTCONNECTED LAPB module is not connected.
|
LAPB_NOTCONNECTED LAPB module is not connected.
|
||||||
|
================= =============================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int lapb_data_received(void *token, struct sk_buff *skb);
|
int lapb_data_received(void *token, struct sk_buff *skb);
|
||||||
|
|
||||||
Queue data with the LAPB module which has been received from the device. It
|
Queue data with the LAPB module which has been received from the device. It
|
||||||
is expected that the data passed to the LAPB module has skb->data pointing
|
is expected that the data passed to the LAPB module has skb->data pointing
|
||||||
@@ -188,9 +219,10 @@ to the beginning of the LAPB data. If the call is successful then the skbuff
|
|||||||
is owned by the LAPB module and may not be used by the device driver again.
|
is owned by the LAPB module and may not be used by the device driver again.
|
||||||
The valid return values are:
|
The valid return values are:
|
||||||
|
|
||||||
|
============= ===========================
|
||||||
LAPB_OK LAPB has accepted the data.
|
LAPB_OK LAPB has accepted the data.
|
||||||
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
LAPB_BADTOKEN Invalid/unknown LAPB token.
|
||||||
|
============= ===========================
|
||||||
|
|
||||||
Callbacks
|
Callbacks
|
||||||
---------
|
---------
|
||||||
@@ -200,49 +232,58 @@ module to call when an event occurs. They are registered with the LAPB
|
|||||||
module with lapb_register (see above) in the structure lapb_register_struct
|
module with lapb_register (see above) in the structure lapb_register_struct
|
||||||
(see above).
|
(see above).
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
void (*connect_confirmation)(void *token, int reason);
|
void (*connect_confirmation)(void *token, int reason);
|
||||||
|
|
||||||
This is called by the LAPB module when a connection is established after
|
This is called by the LAPB module when a connection is established after
|
||||||
being requested by a call to lapb_connect_request (see above). The reason is
|
being requested by a call to lapb_connect_request (see above). The reason is
|
||||||
always LAPB_OK.
|
always LAPB_OK.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
void (*connect_indication)(void *token, int reason);
|
void (*connect_indication)(void *token, int reason);
|
||||||
|
|
||||||
This is called by the LAPB module when the link is established by the remote
|
This is called by the LAPB module when the link is established by the remote
|
||||||
system. The value of reason is always LAPB_OK.
|
system. The value of reason is always LAPB_OK.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
void (*disconnect_confirmation)(void *token, int reason);
|
void (*disconnect_confirmation)(void *token, int reason);
|
||||||
|
|
||||||
This is called by the LAPB module when an event occurs after the device
|
This is called by the LAPB module when an event occurs after the device
|
||||||
driver has called lapb_disconnect_request (see above). The reason indicates
|
driver has called lapb_disconnect_request (see above). The reason indicates
|
||||||
what has happened. In all cases the LAPB link can be regarded as being
|
what has happened. In all cases the LAPB link can be regarded as being
|
||||||
terminated. The values for reason are:
|
terminated. The values for reason are:
|
||||||
|
|
||||||
|
================= ====================================================
|
||||||
LAPB_OK The LAPB link was terminated normally.
|
LAPB_OK The LAPB link was terminated normally.
|
||||||
LAPB_NOTCONNECTED The remote system was not connected.
|
LAPB_NOTCONNECTED The remote system was not connected.
|
||||||
LAPB_TIMEDOUT No response was received in N2 tries from the remote
|
LAPB_TIMEDOUT No response was received in N2 tries from the remote
|
||||||
system.
|
system.
|
||||||
|
================= ====================================================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
void (*disconnect_indication)(void *token, int reason);
|
void (*disconnect_indication)(void *token, int reason);
|
||||||
|
|
||||||
This is called by the LAPB module when the link is terminated by the remote
|
This is called by the LAPB module when the link is terminated by the remote
|
||||||
system or another event has occurred to terminate the link. This may be
|
system or another event has occurred to terminate the link. This may be
|
||||||
returned in response to a lapb_connect_request (see above) if the remote
|
returned in response to a lapb_connect_request (see above) if the remote
|
||||||
system refused the request. The values for reason are:
|
system refused the request. The values for reason are:
|
||||||
|
|
||||||
|
================= ====================================================
|
||||||
LAPB_OK The LAPB link was terminated normally by the remote
|
LAPB_OK The LAPB link was terminated normally by the remote
|
||||||
system.
|
system.
|
||||||
LAPB_REFUSED The remote system refused the connect request.
|
LAPB_REFUSED The remote system refused the connect request.
|
||||||
LAPB_NOTCONNECTED The remote system was not connected.
|
LAPB_NOTCONNECTED The remote system was not connected.
|
||||||
LAPB_TIMEDOUT No response was received in N2 tries from the remote
|
LAPB_TIMEDOUT No response was received in N2 tries from the remote
|
||||||
system.
|
system.
|
||||||
|
================= ====================================================
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
int (*data_indication)(void *token, struct sk_buff *skb);
|
int (*data_indication)(void *token, struct sk_buff *skb);
|
||||||
|
|
||||||
This is called by the LAPB module when data has been received from the
|
This is called by the LAPB module when data has been received from the
|
||||||
remote system that should be passed onto the next layer in the protocol
|
remote system that should be passed onto the next layer in the protocol
|
||||||
@@ -254,8 +295,9 @@ This method should return NET_RX_DROP (as defined in the header
|
|||||||
file include/linux/netdevice.h) if and only if the frame was dropped
|
file include/linux/netdevice.h) if and only if the frame was dropped
|
||||||
before it could be delivered to the upper layer.
|
before it could be delivered to the upper layer.
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
void (*data_transmit)(void *token, struct sk_buff *skb);
|
void (*data_transmit)(void *token, struct sk_buff *skb);
|
||||||
|
|
||||||
This is called by the LAPB module when data is to be transmitted to the
|
This is called by the LAPB module when data is to be transmitted to the
|
||||||
remote system by the device driver. The skbuff becomes the property of the
|
remote system by the device driver. The skbuff becomes the property of the
|
@@ -9515,7 +9515,7 @@ F: drivers/soc/lantiq
|
|||||||
LAPB module
|
LAPB module
|
||||||
L: linux-x25@vger.kernel.org
|
L: linux-x25@vger.kernel.org
|
||||||
S: Orphan
|
S: Orphan
|
||||||
F: Documentation/networking/lapb-module.txt
|
F: Documentation/networking/lapb-module.rst
|
||||||
F: include/*/lapb.h
|
F: include/*/lapb.h
|
||||||
F: net/lapb/
|
F: net/lapb/
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@ config LAPB
|
|||||||
currently supports LAPB only over Ethernet connections. If you want
|
currently supports LAPB only over Ethernet connections. If you want
|
||||||
to use LAPB connections over Ethernet, say Y here and to "LAPB over
|
to use LAPB connections over Ethernet, say Y here and to "LAPB over
|
||||||
Ethernet driver" below. Read
|
Ethernet driver" below. Read
|
||||||
<file:Documentation/networking/lapb-module.txt> for technical
|
<file:Documentation/networking/lapb-module.rst> for technical
|
||||||
details.
|
details.
|
||||||
|
|
||||||
To compile this driver as a module, choose M here: the
|
To compile this driver as a module, choose M here: the
|
||||||
|
Reference in New Issue
Block a user