Commit 6996a8ab authored by Martin Dalecki's avatar Martin Dalecki Committed by Linus Torvalds

[PATCH] kill warnings 12/19

The irda people use shreddy editors saga continues.
parent 67b5d6ea
/********************************************************************* /*********************************************************************
* *
* Filename: irlap.c * Filename: irlap.c
* Version: 1.0 * Version: 1.0
* Description: IrLAP implementation for Linux * Description: IrLAP implementation for Linux
...@@ -8,25 +8,25 @@ ...@@ -8,25 +8,25 @@
* Created at: Mon Aug 4 20:40:53 1997 * Created at: Mon Aug 4 20:40:53 1997
* Modified at: Tue Dec 14 09:26:44 1999 * Modified at: Tue Dec 14 09:26:44 1999
* Modified by: Dag Brattli <dagb@cs.uit.no> * Modified by: Dag Brattli <dagb@cs.uit.no>
* *
* Copyright (c) 1998-1999 Dag Brattli, All Rights Reserved. * Copyright (c) 1998-1999 Dag Brattli, All Rights Reserved.
* Copyright (c) 2000-2001 Jean Tourrilhes <jt@hpl.hp.com> * Copyright (c) 2000-2001 Jean Tourrilhes <jt@hpl.hp.com>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of * published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version. * the License, or (at your option) any later version.
* *
* This program is distributed in the hope that it will be useful, * This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of * but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details. * GNU General Public License for more details.
* *
* You should have received a copy of the GNU General Public License * You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA * MA 02111-1307 USA
* *
********************************************************************/ ********************************************************************/
#include <linux/config.h> #include <linux/config.h>
...@@ -82,7 +82,7 @@ int __init irlap_init(void) ...@@ -82,7 +82,7 @@ int __init irlap_init(void)
/* Allocate master array */ /* Allocate master array */
irlap = hashbin_new(HB_LOCAL); irlap = hashbin_new(HB_LOCAL);
if (irlap == NULL) { if (irlap == NULL) {
ERROR(__FUNCTION__ "(), can't allocate irlap hashbin!\n"); ERROR("%s: can't allocate irlap hashbin!\n", __FUNCTION__);
return -ENOMEM; return -ENOMEM;
} }
...@@ -108,12 +108,12 @@ struct irlap_cb *irlap_open(struct net_device *dev, struct qos_info *qos, ...@@ -108,12 +108,12 @@ struct irlap_cb *irlap_open(struct net_device *dev, struct qos_info *qos,
struct irlap_cb *self; struct irlap_cb *self;
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
/* Initialize the irlap structure. */ /* Initialize the irlap structure. */
self = kmalloc(sizeof(struct irlap_cb), GFP_KERNEL); self = kmalloc(sizeof(struct irlap_cb), GFP_KERNEL);
if (self == NULL) if (self == NULL)
return NULL; return NULL;
memset(self, 0, sizeof(struct irlap_cb)); memset(self, 0, sizeof(struct irlap_cb));
self->magic = LAP_MAGIC; self->magic = LAP_MAGIC;
...@@ -145,22 +145,22 @@ struct irlap_cb *irlap_open(struct net_device *dev, struct qos_info *qos, ...@@ -145,22 +145,22 @@ struct irlap_cb *irlap_open(struct net_device *dev, struct qos_info *qos,
init_timer(&self->slot_timer); init_timer(&self->slot_timer);
init_timer(&self->query_timer); init_timer(&self->query_timer);
init_timer(&self->discovery_timer); init_timer(&self->discovery_timer);
init_timer(&self->final_timer); init_timer(&self->final_timer);
init_timer(&self->poll_timer); init_timer(&self->poll_timer);
init_timer(&self->wd_timer); init_timer(&self->wd_timer);
init_timer(&self->backoff_timer); init_timer(&self->backoff_timer);
init_timer(&self->media_busy_timer); init_timer(&self->media_busy_timer);
irlap_apply_default_connection_parameters(self); irlap_apply_default_connection_parameters(self);
self->N3 = 3; /* # connections attemts to try before giving up */ self->N3 = 3; /* # connections attemts to try before giving up */
self->state = LAP_NDM; self->state = LAP_NDM;
hashbin_insert(irlap, (irda_queue_t *) self, self->saddr, NULL); hashbin_insert(irlap, (irda_queue_t *) self, self->saddr, NULL);
irlmp_register_link(self, self->saddr, &self->notify); irlmp_register_link(self, self->saddr, &self->notify);
return self; return self;
} }
...@@ -179,16 +179,16 @@ static void __irlap_close(struct irlap_cb *self) ...@@ -179,16 +179,16 @@ static void __irlap_close(struct irlap_cb *self)
del_timer(&self->slot_timer); del_timer(&self->slot_timer);
del_timer(&self->query_timer); del_timer(&self->query_timer);
del_timer(&self->discovery_timer); del_timer(&self->discovery_timer);
del_timer(&self->final_timer); del_timer(&self->final_timer);
del_timer(&self->poll_timer); del_timer(&self->poll_timer);
del_timer(&self->wd_timer); del_timer(&self->wd_timer);
del_timer(&self->backoff_timer); del_timer(&self->backoff_timer);
del_timer(&self->media_busy_timer); del_timer(&self->media_busy_timer);
irlap_flush_all_queues(self); irlap_flush_all_queues(self);
self->magic = 0; self->magic = 0;
kfree(self); kfree(self);
} }
...@@ -198,12 +198,12 @@ static void __irlap_close(struct irlap_cb *self) ...@@ -198,12 +198,12 @@ static void __irlap_close(struct irlap_cb *self)
* Remove IrLAP instance * Remove IrLAP instance
* *
*/ */
void irlap_close(struct irlap_cb *self) void irlap_close(struct irlap_cb *self)
{ {
struct irlap_cb *lap; struct irlap_cb *lap;
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
...@@ -227,7 +227,7 @@ void irlap_close(struct irlap_cb *self) ...@@ -227,7 +227,7 @@ void irlap_close(struct irlap_cb *self)
* Another device is attempting to make a connection * Another device is attempting to make a connection
* *
*/ */
void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb) void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb)
{ {
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
...@@ -237,7 +237,7 @@ void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb) ...@@ -237,7 +237,7 @@ void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb)
irlap_init_qos_capabilities(self, NULL); /* No user QoS! */ irlap_init_qos_capabilities(self, NULL); /* No user QoS! */
skb_get(skb); /*LEVEL4*/ skb_get(skb); /*LEVEL4*/
irlmp_link_connect_indication(self->notify.instance, self->saddr, irlmp_link_connect_indication(self->notify.instance, self->saddr,
self->daddr, &self->qos_tx, skb); self->daddr, &self->qos_tx, skb);
} }
...@@ -247,10 +247,10 @@ void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb) ...@@ -247,10 +247,10 @@ void irlap_connect_indication(struct irlap_cb *self, struct sk_buff *skb)
* Service user has accepted incoming connection * Service user has accepted incoming connection
* *
*/ */
void irlap_connect_response(struct irlap_cb *self, struct sk_buff *skb) void irlap_connect_response(struct irlap_cb *self, struct sk_buff *skb)
{ {
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
irlap_do_event(self, CONNECT_RESPONSE, skb, NULL); irlap_do_event(self, CONNECT_RESPONSE, skb, NULL);
kfree_skb(skb); kfree_skb(skb);
} }
...@@ -258,26 +258,26 @@ void irlap_connect_response(struct irlap_cb *self, struct sk_buff *skb) ...@@ -258,26 +258,26 @@ void irlap_connect_response(struct irlap_cb *self, struct sk_buff *skb)
/* /*
* Function irlap_connect_request (self, daddr, qos_user, sniff) * Function irlap_connect_request (self, daddr, qos_user, sniff)
* *
* Request connection with another device, sniffing is not implemented * Request connection with another device, sniffing is not implemented
* yet. * yet.
* *
*/ */
void irlap_connect_request(struct irlap_cb *self, __u32 daddr, void irlap_connect_request(struct irlap_cb *self, __u32 daddr,
struct qos_info *qos_user, int sniff) struct qos_info *qos_user, int sniff)
{ {
IRDA_DEBUG(3, __FUNCTION__ "(), daddr=0x%08x\n", daddr); IRDA_DEBUG(3, __FUNCTION__ "(), daddr=0x%08x\n", daddr);
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
self->daddr = daddr; self->daddr = daddr;
/* /*
* If the service user specifies QoS values for this connection, * If the service user specifies QoS values for this connection,
* then use them * then use them
*/ */
irlap_init_qos_capabilities(self, qos_user); irlap_init_qos_capabilities(self, qos_user);
if ((self->state == LAP_NDM) && !self->media_busy) if ((self->state == LAP_NDM) && !self->media_busy)
irlap_do_event(self, CONNECT_REQUEST, NULL, NULL); irlap_do_event(self, CONNECT_REQUEST, NULL, NULL);
else else
...@@ -304,12 +304,12 @@ void irlap_connect_confirm(struct irlap_cb *self, struct sk_buff *skb) ...@@ -304,12 +304,12 @@ void irlap_connect_confirm(struct irlap_cb *self, struct sk_buff *skb)
/* /*
* Function irlap_data_indication (self, skb) * Function irlap_data_indication (self, skb)
* *
* Received data frames from IR-port, so we just pass them up to * Received data frames from IR-port, so we just pass them up to
* IrLMP for further processing * IrLMP for further processing
* *
*/ */
void irlap_data_indication(struct irlap_cb *self, struct sk_buff *skb, void irlap_data_indication(struct irlap_cb *self, struct sk_buff *skb,
int unreliable) int unreliable)
{ {
/* Hide LAP header from IrLMP layer */ /* Hide LAP header from IrLMP layer */
skb_pull(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER); skb_pull(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER);
...@@ -325,7 +325,7 @@ void irlap_data_indication(struct irlap_cb *self, struct sk_buff *skb, ...@@ -325,7 +325,7 @@ void irlap_data_indication(struct irlap_cb *self, struct sk_buff *skb,
* Queue data for transmission, must wait until XMIT state * Queue data for transmission, must wait until XMIT state
* *
*/ */
void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb, void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb,
int unreliable) int unreliable)
{ {
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
...@@ -333,12 +333,12 @@ void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb, ...@@ -333,12 +333,12 @@ void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb,
IRDA_DEBUG(3, __FUNCTION__ "()\n"); IRDA_DEBUG(3, __FUNCTION__ "()\n");
ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER), ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER),
return;); return;);
skb_push(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER); skb_push(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER);
/* /*
* Must set frame format now so that the rest of the code knows * Must set frame format now so that the rest of the code knows
* if its dealing with an I or an UI frame * if its dealing with an I or an UI frame
*/ */
if (unreliable) if (unreliable)
...@@ -349,11 +349,11 @@ void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb, ...@@ -349,11 +349,11 @@ void irlap_data_request(struct irlap_cb *self, struct sk_buff *skb,
/* Add at the end of the queue (keep ordering) - Jean II */ /* Add at the end of the queue (keep ordering) - Jean II */
skb_queue_tail(&self->txq, skb); skb_queue_tail(&self->txq, skb);
/* /*
* Send event if this frame only if we are in the right state * Send event if this frame only if we are in the right state
* FIXME: udata should be sent first! (skb_queue_head?) * FIXME: udata should be sent first! (skb_queue_head?)
*/ */
if ((self->state == LAP_XMIT_P) || (self->state == LAP_XMIT_S)) { if ((self->state == LAP_XMIT_P) || (self->state == LAP_XMIT_S)) {
/* If we are not already processing the Tx queue, trigger /* If we are not already processing the Tx queue, trigger
* transmission immediately - Jean II */ * transmission immediately - Jean II */
if((skb_queue_len(&self->txq) <= 1) && (!self->local_busy)) if((skb_queue_len(&self->txq) <= 1) && (!self->local_busy))
...@@ -377,7 +377,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb) ...@@ -377,7 +377,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb)
IRDA_DEBUG(3, __FUNCTION__ "()\n"); IRDA_DEBUG(3, __FUNCTION__ "()\n");
ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER), ASSERT(skb_headroom(skb) >= (LAP_ADDR_HEADER+LAP_CTRL_HEADER),
return;); return;);
skb_push(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER); skb_push(skb, LAP_ADDR_HEADER+LAP_CTRL_HEADER);
...@@ -399,7 +399,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb) ...@@ -399,7 +399,7 @@ void irlap_unitdata_request(struct irlap_cb *self, struct sk_buff *skb)
#ifdef CONFIG_IRDA_ULTRA #ifdef CONFIG_IRDA_ULTRA
void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb) void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb)
{ {
IRDA_DEBUG(1, __FUNCTION__ "()\n"); IRDA_DEBUG(1, __FUNCTION__ "()\n");
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
...@@ -418,17 +418,17 @@ void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb) ...@@ -418,17 +418,17 @@ void irlap_unitdata_indication(struct irlap_cb *self, struct sk_buff *skb)
* *
* Request to disconnect connection by service user * Request to disconnect connection by service user
*/ */
void irlap_disconnect_request(struct irlap_cb *self) void irlap_disconnect_request(struct irlap_cb *self)
{ {
IRDA_DEBUG(3, __FUNCTION__ "()\n"); IRDA_DEBUG(3, __FUNCTION__ "()\n");
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
/* Don't disconnect until all data frames are successfully sent */ /* Don't disconnect until all data frames are successfully sent */
if (skb_queue_len(&self->txq) > 0) { if (skb_queue_len(&self->txq) > 0) {
self->disconnect_pending = TRUE; self->disconnect_pending = TRUE;
return; return;
} }
...@@ -436,9 +436,9 @@ void irlap_disconnect_request(struct irlap_cb *self) ...@@ -436,9 +436,9 @@ void irlap_disconnect_request(struct irlap_cb *self)
switch (self->state) { switch (self->state) {
case LAP_XMIT_P: /* FALLTROUGH */ case LAP_XMIT_P: /* FALLTROUGH */
case LAP_XMIT_S: /* FALLTROUGH */ case LAP_XMIT_S: /* FALLTROUGH */
case LAP_CONN: /* FALLTROUGH */ case LAP_CONN: /* FALLTROUGH */
case LAP_RESET_WAIT: /* FALLTROUGH */ case LAP_RESET_WAIT: /* FALLTROUGH */
case LAP_RESET_CHECK: case LAP_RESET_CHECK:
irlap_do_event(self, DISCONNECT_REQUEST, NULL, NULL); irlap_do_event(self, DISCONNECT_REQUEST, NULL, NULL);
break; break;
default: default:
...@@ -454,30 +454,30 @@ void irlap_disconnect_request(struct irlap_cb *self) ...@@ -454,30 +454,30 @@ void irlap_disconnect_request(struct irlap_cb *self)
* Disconnect request from other device * Disconnect request from other device
* *
*/ */
void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason) void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
{ {
IRDA_DEBUG(1, __FUNCTION__ "(), reason=%s\n", lap_reasons[reason]); IRDA_DEBUG(1, __FUNCTION__ "(), reason=%s\n", lap_reasons[reason]);
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
/* Flush queues */ /* Flush queues */
irlap_flush_all_queues(self); irlap_flush_all_queues(self);
switch (reason) { switch (reason) {
case LAP_RESET_INDICATION: case LAP_RESET_INDICATION:
IRDA_DEBUG(1, __FUNCTION__ "(), Sending reset request!\n"); IRDA_DEBUG(1, __FUNCTION__ "(), Sending reset request!\n");
irlap_do_event(self, RESET_REQUEST, NULL, NULL); irlap_do_event(self, RESET_REQUEST, NULL, NULL);
break; break;
case LAP_NO_RESPONSE: /* FALLTROUGH */ case LAP_NO_RESPONSE: /* FALLTROUGH */
case LAP_DISC_INDICATION: /* FALLTROUGH */ case LAP_DISC_INDICATION: /* FALLTROUGH */
case LAP_FOUND_NONE: /* FALLTROUGH */ case LAP_FOUND_NONE: /* FALLTROUGH */
case LAP_MEDIA_BUSY: case LAP_MEDIA_BUSY:
irlmp_link_disconnect_indication(self->notify.instance, self, irlmp_link_disconnect_indication(self->notify.instance, self,
reason, NULL); reason, NULL);
break; break;
default: default:
ERROR(__FUNCTION__ "(), Unknown reason %d\n", reason); ERROR("%s: Unknown reason %d\n", __FUNCTION__, reason);
} }
} }
...@@ -487,23 +487,23 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason) ...@@ -487,23 +487,23 @@ void irlap_disconnect_indication(struct irlap_cb *self, LAP_REASON reason)
* Start one single discovery operation. * Start one single discovery operation.
* *
*/ */
void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery) void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
{ {
struct irlap_info info; struct irlap_info info;
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
ASSERT(discovery != NULL, return;); ASSERT(discovery != NULL, return;);
IRDA_DEBUG(4, __FUNCTION__ "(), nslots = %d\n", discovery->nslots); IRDA_DEBUG(4, __FUNCTION__ "(), nslots = %d\n", discovery->nslots);
ASSERT((discovery->nslots == 1) || (discovery->nslots == 6) || ASSERT((discovery->nslots == 1) || (discovery->nslots == 6) ||
(discovery->nslots == 8) || (discovery->nslots == 16), (discovery->nslots == 8) || (discovery->nslots == 16),
return;); return;);
/* Discovery is only possible in NDM mode */ /* Discovery is only possible in NDM mode */
if (self->state != LAP_NDM) { if (self->state != LAP_NDM) {
IRDA_DEBUG(4, __FUNCTION__ IRDA_DEBUG(4, __FUNCTION__
"(), discovery only possible in NDM mode\n"); "(), discovery only possible in NDM mode\n");
irlap_discovery_confirm(self, NULL); irlap_discovery_confirm(self, NULL);
/* Note : in theory, if we are not in NDM, we could postpone /* Note : in theory, if we are not in NDM, we could postpone
...@@ -521,18 +521,18 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery) ...@@ -521,18 +521,18 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
hashbin_delete(self->discovery_log, (FREE_FUNC) kfree); hashbin_delete(self->discovery_log, (FREE_FUNC) kfree);
self->discovery_log = NULL; self->discovery_log = NULL;
} }
self->discovery_log= hashbin_new(HB_LOCAL); self->discovery_log= hashbin_new(HB_LOCAL);
info.S = discovery->nslots; /* Number of slots */ info.S = discovery->nslots; /* Number of slots */
info.s = 0; /* Current slot */ info.s = 0; /* Current slot */
self->discovery_cmd = discovery; self->discovery_cmd = discovery;
info.discovery = discovery; info.discovery = discovery;
/* sysctl_slot_timeout bounds are checked in irsysctl.c - Jean II */ /* sysctl_slot_timeout bounds are checked in irsysctl.c - Jean II */
self->slot_timeout = sysctl_slot_timeout * HZ / 1000; self->slot_timeout = sysctl_slot_timeout * HZ / 1000;
irlap_do_event(self, DISCOVERY_REQUEST, NULL, &info); irlap_do_event(self, DISCOVERY_REQUEST, NULL, &info);
} }
...@@ -542,15 +542,15 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery) ...@@ -542,15 +542,15 @@ void irlap_discovery_request(struct irlap_cb *self, discovery_t *discovery)
* A device has been discovered in front of this station, we * A device has been discovered in front of this station, we
* report directly to LMP. * report directly to LMP.
*/ */
void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log) void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log)
{ {
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
ASSERT(self->notify.instance != NULL, return;); ASSERT(self->notify.instance != NULL, return;);
/* /*
* Check for successful discovery, since we are then allowed to clear * Check for successful discovery, since we are then allowed to clear
* the media busy condition (IrLAP 6.13.4 - p.94). This should allow * the media busy condition (IrLAP 6.13.4 - p.94). This should allow
* us to make connection attempts much faster and easier (i.e. no * us to make connection attempts much faster and easier (i.e. no
* collisions). * collisions).
...@@ -562,7 +562,7 @@ void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log) ...@@ -562,7 +562,7 @@ void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log)
*/ */
if (discovery_log) if (discovery_log)
irda_device_set_media_busy(self->netdev, FALSE); irda_device_set_media_busy(self->netdev, FALSE);
/* Inform IrLMP */ /* Inform IrLMP */
irlmp_link_discovery_confirm(self->notify.instance, discovery_log); irlmp_link_discovery_confirm(self->notify.instance, discovery_log);
} }
...@@ -573,7 +573,7 @@ void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log) ...@@ -573,7 +573,7 @@ void irlap_discovery_confirm(struct irlap_cb *self, hashbin_t *discovery_log)
* Somebody is trying to discover us! * Somebody is trying to discover us!
* *
*/ */
void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery) void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery)
{ {
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
...@@ -599,11 +599,8 @@ void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery) ...@@ -599,11 +599,8 @@ void irlap_discovery_indication(struct irlap_cb *self, discovery_t *discovery)
/* /*
* Function irlap_status_indication (quality_of_link) * Function irlap_status_indication (quality_of_link)
*
*
*
*/ */
void irlap_status_indication(struct irlap_cb *self, int quality_of_link) void irlap_status_indication(struct irlap_cb *self, int quality_of_link)
{ {
switch (quality_of_link) { switch (quality_of_link) {
case STATUS_NO_ACTIVITY: case STATUS_NO_ACTIVITY:
...@@ -621,9 +618,6 @@ void irlap_status_indication(struct irlap_cb *self, int quality_of_link) ...@@ -621,9 +618,6 @@ void irlap_status_indication(struct irlap_cb *self, int quality_of_link)
/* /*
* Function irlap_reset_indication (void) * Function irlap_reset_indication (void)
*
*
*
*/ */
void irlap_reset_indication(struct irlap_cb *self) void irlap_reset_indication(struct irlap_cb *self)
{ {
...@@ -631,7 +625,7 @@ void irlap_reset_indication(struct irlap_cb *self) ...@@ -631,7 +625,7 @@ void irlap_reset_indication(struct irlap_cb *self)
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
if (self->state == LAP_RESET_WAIT) if (self->state == LAP_RESET_WAIT)
irlap_do_event(self, RESET_REQUEST, NULL, NULL); irlap_do_event(self, RESET_REQUEST, NULL, NULL);
else else
...@@ -640,13 +634,10 @@ void irlap_reset_indication(struct irlap_cb *self) ...@@ -640,13 +634,10 @@ void irlap_reset_indication(struct irlap_cb *self)
/* /*
* Function irlap_reset_confirm (void) * Function irlap_reset_confirm (void)
*
*
*
*/ */
void irlap_reset_confirm(void) void irlap_reset_confirm(void)
{ {
IRDA_DEBUG(1, __FUNCTION__ "()\n"); IRDA_DEBUG(1, __FUNCTION__ "()\n");
} }
/* /*
...@@ -656,11 +647,11 @@ void irlap_reset_confirm(void) ...@@ -656,11 +647,11 @@ void irlap_reset_confirm(void)
* S = Number of slots (0 -> S-1) * S = Number of slots (0 -> S-1)
* s = Current slot * s = Current slot
*/ */
int irlap_generate_rand_time_slot(int S, int s) int irlap_generate_rand_time_slot(int S, int s)
{ {
static int rand; static int rand;
int slot; int slot;
ASSERT((S - s) > 0, return 0;); ASSERT((S - s) > 0, return 0;);
rand += jiffies; rand += jiffies;
...@@ -668,20 +659,20 @@ int irlap_generate_rand_time_slot(int S, int s) ...@@ -668,20 +659,20 @@ int irlap_generate_rand_time_slot(int S, int s)
rand ^= (rand >> 20); rand ^= (rand >> 20);
slot = s + rand % (S-s); slot = s + rand % (S-s);
ASSERT((slot >= s) || (slot < S), return 0;); ASSERT((slot >= s) || (slot < S), return 0;);
return slot; return slot;
} }
/* /*
* Function irlap_update_nr_received (nr) * Function irlap_update_nr_received (nr)
* *
* Remove all acknowledged frames in current window queue. This code is * Remove all acknowledged frames in current window queue. This code is
* not intuitive and you should not try to change it. If you think it * not intuitive and you should not try to change it. If you think it
* contains bugs, please mail a patch to the author instead. * contains bugs, please mail a patch to the author instead.
*/ */
void irlap_update_nr_received(struct irlap_cb *self, int nr) void irlap_update_nr_received(struct irlap_cb *self, int nr)
{ {
struct sk_buff *skb = NULL; struct sk_buff *skb = NULL;
int count = 0; int count = 0;
...@@ -690,7 +681,7 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr) ...@@ -690,7 +681,7 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr)
* Remove all the ack-ed frames from the window queue. * Remove all the ack-ed frames from the window queue.
*/ */
/* /*
* Optimize for the common case. It is most likely that the receiver * Optimize for the common case. It is most likely that the receiver
* will acknowledge all the frames we have sent! So in that case we * will acknowledge all the frames we have sent! So in that case we
* delete all frames stored in window. * delete all frames stored in window.
...@@ -703,17 +694,17 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr) ...@@ -703,17 +694,17 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr)
self->va = nr - 1; self->va = nr - 1;
} else { } else {
/* Remove all acknowledged frames in current window */ /* Remove all acknowledged frames in current window */
while ((skb_peek(&self->wx_list) != NULL) && while ((skb_peek(&self->wx_list) != NULL) &&
(((self->va+1) % 8) != nr)) (((self->va+1) % 8) != nr))
{ {
skb = skb_dequeue(&self->wx_list); skb = skb_dequeue(&self->wx_list);
dev_kfree_skb(skb); dev_kfree_skb(skb);
self->va = (self->va + 1) % 8; self->va = (self->va + 1) % 8;
count++; count++;
} }
} }
/* Advance window */ /* Advance window */
self->window = self->window_size - skb_queue_len(&self->wx_list); self->window = self->window_size - skb_queue_len(&self->wx_list);
} }
...@@ -723,7 +714,7 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr) ...@@ -723,7 +714,7 @@ void irlap_update_nr_received(struct irlap_cb *self, int nr)
* *
* Validate the next to send (ns) field from received frame. * Validate the next to send (ns) field from received frame.
*/ */
int irlap_validate_ns_received(struct irlap_cb *self, int ns) int irlap_validate_ns_received(struct irlap_cb *self, int ns)
{ {
/* ns as expected? */ /* ns as expected? */
if (ns == self->vr) if (ns == self->vr)
...@@ -733,7 +724,7 @@ int irlap_validate_ns_received(struct irlap_cb *self, int ns) ...@@ -733,7 +724,7 @@ int irlap_validate_ns_received(struct irlap_cb *self, int ns)
* IrLAP, Recv ... with-invalid-Ns. p. 84 * IrLAP, Recv ... with-invalid-Ns. p. 84
*/ */
return NS_UNEXPECTED; return NS_UNEXPECTED;
/* return NR_INVALID; */ /* return NR_INVALID; */
} }
/* /*
...@@ -742,7 +733,7 @@ int irlap_validate_ns_received(struct irlap_cb *self, int ns) ...@@ -742,7 +733,7 @@ int irlap_validate_ns_received(struct irlap_cb *self, int ns)
* Validate the next to receive (nr) field from received frame. * Validate the next to receive (nr) field from received frame.
* *
*/ */
int irlap_validate_nr_received(struct irlap_cb *self, int nr) int irlap_validate_nr_received(struct irlap_cb *self, int nr)
{ {
/* nr as expected? */ /* nr as expected? */
if (nr == self->vs) { if (nr == self->vs) {
...@@ -751,17 +742,17 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr) ...@@ -751,17 +742,17 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr)
} }
/* /*
* unexpected nr? (but within current window), first we check if the * unexpected nr? (but within current window), first we check if the
* ns numbers of the frames in the current window wrap. * ns numbers of the frames in the current window wrap.
*/ */
if (self->va < self->vs) { if (self->va < self->vs) {
if ((nr >= self->va) && (nr <= self->vs)) if ((nr >= self->va) && (nr <= self->vs))
return NR_UNEXPECTED; return NR_UNEXPECTED;
} else { } else {
if ((nr >= self->va) || (nr <= self->vs)) if ((nr >= self->va) || (nr <= self->vs))
return NR_UNEXPECTED; return NR_UNEXPECTED;
} }
/* Invalid nr! */ /* Invalid nr! */
return NR_INVALID; return NR_INVALID;
} }
...@@ -772,10 +763,10 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr) ...@@ -772,10 +763,10 @@ int irlap_validate_nr_received(struct irlap_cb *self, int nr)
* Initialize the connection state parameters * Initialize the connection state parameters
* *
*/ */
void irlap_initiate_connection_state(struct irlap_cb *self) void irlap_initiate_connection_state(struct irlap_cb *self)
{ {
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
...@@ -799,11 +790,11 @@ void irlap_initiate_connection_state(struct irlap_cb *self) ...@@ -799,11 +790,11 @@ void irlap_initiate_connection_state(struct irlap_cb *self)
* frame in order to delay for the specified amount of time. This is * frame in order to delay for the specified amount of time. This is
* done to avoid using timers, and the forbidden udelay! * done to avoid using timers, and the forbidden udelay!
*/ */
void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos) void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos)
{ {
__u32 min_turn_time; __u32 min_turn_time;
__u32 speed; __u32 speed;
/* Get QoS values. */ /* Get QoS values. */
speed = qos->baud_rate.value; speed = qos->baud_rate.value;
min_turn_time = qos->min_turn_time.value; min_turn_time = qos->min_turn_time.value;
...@@ -813,10 +804,10 @@ void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos) ...@@ -813,10 +804,10 @@ void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos)
self->mtt_required = min_turn_time; self->mtt_required = min_turn_time;
return; return;
} }
/* /*
* Send additional BOF's for the next frame for the requested * Send additional BOF's for the next frame for the requested
* min turn time, so now we must calculate how many chars (XBOF's) we * min turn time, so now we must calculate how many chars (XBOF's) we
* must send for the requested time period (min turn time) * must send for the requested time period (min turn time)
*/ */
self->xbofs_delay = irlap_min_turn_time_in_bytes(speed, min_turn_time); self->xbofs_delay = irlap_min_turn_time_in_bytes(speed, min_turn_time);
...@@ -828,7 +819,7 @@ void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos) ...@@ -828,7 +819,7 @@ void irlap_wait_min_turn_around(struct irlap_cb *self, struct qos_info *qos)
* Flush all queues * Flush all queues
* *
*/ */
void irlap_flush_all_queues(struct irlap_cb *self) void irlap_flush_all_queues(struct irlap_cb *self)
{ {
struct sk_buff* skb; struct sk_buff* skb;
...@@ -838,7 +829,7 @@ void irlap_flush_all_queues(struct irlap_cb *self) ...@@ -838,7 +829,7 @@ void irlap_flush_all_queues(struct irlap_cb *self)
/* Free transmission queue */ /* Free transmission queue */
while ((skb = skb_dequeue(&self->txq)) != NULL) while ((skb = skb_dequeue(&self->txq)) != NULL)
dev_kfree_skb(skb); dev_kfree_skb(skb);
while ((skb = skb_dequeue(&self->txq_ultra)) != NULL) while ((skb = skb_dequeue(&self->txq_ultra)) != NULL)
dev_kfree_skb(skb); dev_kfree_skb(skb);
...@@ -894,7 +885,7 @@ void irlap_init_qos_capabilities(struct irlap_cb *self, ...@@ -894,7 +885,7 @@ void irlap_init_qos_capabilities(struct irlap_cb *self,
irda_qos_compute_intersection(&self->qos_rx, self->qos_dev); irda_qos_compute_intersection(&self->qos_rx, self->qos_dev);
/* /*
* Check for user supplied QoS parameters. The service user is only * Check for user supplied QoS parameters. The service user is only
* allowed to supply these values. We check each parameter since the * allowed to supply these values. We check each parameter since the
* user may not have set all of them. * user may not have set all of them.
*/ */
...@@ -926,7 +917,6 @@ void irlap_init_qos_capabilities(struct irlap_cb *self, ...@@ -926,7 +917,6 @@ void irlap_init_qos_capabilities(struct irlap_cb *self,
* Function irlap_apply_default_connection_parameters (void, now) * Function irlap_apply_default_connection_parameters (void, now)
* *
* Use the default connection and transmission parameters * Use the default connection and transmission parameters
*
*/ */
void irlap_apply_default_connection_parameters(struct irlap_cb *self) void irlap_apply_default_connection_parameters(struct irlap_cb *self)
{ {
...@@ -945,9 +935,9 @@ void irlap_apply_default_connection_parameters(struct irlap_cb *self) ...@@ -945,9 +935,9 @@ void irlap_apply_default_connection_parameters(struct irlap_cb *self)
/* Set mbusy when going to NDM state */ /* Set mbusy when going to NDM state */
irda_device_set_media_busy(self->netdev, TRUE); irda_device_set_media_busy(self->netdev, TRUE);
/* /*
* Generate random connection address for this session, which must * Generate random connection address for this session, which must
* be 7 bits wide and different from 0x00 and 0xfe * be 7 bits wide and different from 0x00 and 0xfe
*/ */
while ((self->caddr == 0x00) || (self->caddr == 0xfe)) { while ((self->caddr == 0x00) || (self->caddr == 0xfe)) {
get_random_bytes(&self->caddr, sizeof(self->caddr)); get_random_bytes(&self->caddr, sizeof(self->caddr));
...@@ -991,10 +981,10 @@ void irlap_apply_default_connection_parameters(struct irlap_cb *self) ...@@ -991,10 +981,10 @@ void irlap_apply_default_connection_parameters(struct irlap_cb *self)
* frame is sent. * frame is sent.
* If 'now' is true, the speed and xbofs is changed immediately * If 'now' is true, the speed and xbofs is changed immediately
*/ */
void irlap_apply_connection_parameters(struct irlap_cb *self, int now) void irlap_apply_connection_parameters(struct irlap_cb *self, int now)
{ {
IRDA_DEBUG(4, __FUNCTION__ "()\n"); IRDA_DEBUG(4, __FUNCTION__ "()\n");
ASSERT(self != NULL, return;); ASSERT(self != NULL, return;);
ASSERT(self->magic == LAP_MAGIC, return;); ASSERT(self->magic == LAP_MAGIC, return;);
...@@ -1014,15 +1004,15 @@ void irlap_apply_connection_parameters(struct irlap_cb *self, int now) ...@@ -1014,15 +1004,15 @@ void irlap_apply_connection_parameters(struct irlap_cb *self, int now)
* Calculate how many bytes it is possible to transmit before the * Calculate how many bytes it is possible to transmit before the
* link must be turned around * link must be turned around
*/ */
self->line_capacity = self->line_capacity =
irlap_max_line_capacity(self->qos_tx.baud_rate.value, irlap_max_line_capacity(self->qos_tx.baud_rate.value,
self->qos_tx.max_turn_time.value); self->qos_tx.max_turn_time.value);
self->bytes_left = self->line_capacity; self->bytes_left = self->line_capacity;
#endif /* CONFIG_IRDA_DYNAMIC_WINDOW */ #endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
/* /*
* Initialize timeout values, some of the rules are listed on * Initialize timeout values, some of the rules are listed on
* page 92 in IrLAP. * page 92 in IrLAP.
*/ */
ASSERT(self->qos_tx.max_turn_time.value != 0, return;); ASSERT(self->qos_tx.max_turn_time.value != 0, return;);
...@@ -1056,27 +1046,27 @@ void irlap_apply_connection_parameters(struct irlap_cb *self, int now) ...@@ -1056,27 +1046,27 @@ void irlap_apply_connection_parameters(struct irlap_cb *self, int now)
*/ */
/* /*
* Set N1 to 0 if Link Disconnect/Threshold Time = 3 and set it to * Set N1 to 0 if Link Disconnect/Threshold Time = 3 and set it to
* 3 seconds otherwise. See page 71 in IrLAP for more details. * 3 seconds otherwise. See page 71 in IrLAP for more details.
* Actually, it's not always 3 seconds, as we allow to set * Actually, it's not always 3 seconds, as we allow to set
* it via sysctl... Max maxtt is 500ms, and N1 need to be multiple * it via sysctl... Max maxtt is 500ms, and N1 need to be multiple
* of 2, so 1 second is minimum we can allow. - Jean II * of 2, so 1 second is minimum we can allow. - Jean II
*/ */
if (self->qos_tx.link_disc_time.value == sysctl_warn_noreply_time) if (self->qos_tx.link_disc_time.value == sysctl_warn_noreply_time)
/* /*
* If we set N1 to 0, it will trigger immediately, which is * If we set N1 to 0, it will trigger immediately, which is
* not what we want. What we really want is to disable it, * not what we want. What we really want is to disable it,
* Jean II * Jean II
*/ */
self->N1 = -2; /* Disable - Need to be multiple of 2*/ self->N1 = -2; /* Disable - Need to be multiple of 2*/
else else
self->N1 = sysctl_warn_noreply_time * 1000 / self->N1 = sysctl_warn_noreply_time * 1000 /
self->qos_rx.max_turn_time.value; self->qos_rx.max_turn_time.value;
IRDA_DEBUG(4, "Setting N1 = %d\n", self->N1); IRDA_DEBUG(4, "Setting N1 = %d\n", self->N1);
/* Set N2 to match our own disconnect time */ /* Set N2 to match our own disconnect time */
self->N2 = self->qos_tx.link_disc_time.value * 1000 / self->N2 = self->qos_tx.link_disc_time.value * 1000 /
self->qos_rx.max_turn_time.value; self->qos_rx.max_turn_time.value;
IRDA_DEBUG(4, "Setting N2 = %d\n", self->N2); IRDA_DEBUG(4, "Setting N2 = %d\n", self->N2);
} }
...@@ -1093,7 +1083,7 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1093,7 +1083,7 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
struct irlap_cb *self; struct irlap_cb *self;
unsigned long flags; unsigned long flags;
int i = 0; int i = 0;
save_flags(flags); save_flags(flags);
cli(); cli();
...@@ -1105,9 +1095,9 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1105,9 +1095,9 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
ASSERT(self->magic == LAP_MAGIC, return -EBADR;); ASSERT(self->magic == LAP_MAGIC, return -EBADR;);
len += sprintf(buf+len, "irlap%d ", i++); len += sprintf(buf+len, "irlap%d ", i++);
len += sprintf(buf+len, "state: %s\n", len += sprintf(buf+len, "state: %s\n",
irlap_state[self->state]); irlap_state[self->state]);
len += sprintf(buf+len, " device name: %s, ", len += sprintf(buf+len, " device name: %s, ",
(self->netdev) ? self->netdev->name : "bug"); (self->netdev) ? self->netdev->name : "bug");
len += sprintf(buf+len, "hardware name: %s\n", self->hw_name); len += sprintf(buf+len, "hardware name: %s\n", self->hw_name);
...@@ -1115,34 +1105,34 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1115,34 +1105,34 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
len += sprintf(buf+len, " caddr: %#02x, ", self->caddr); len += sprintf(buf+len, " caddr: %#02x, ", self->caddr);
len += sprintf(buf+len, "saddr: %#08x, ", self->saddr); len += sprintf(buf+len, "saddr: %#08x, ", self->saddr);
len += sprintf(buf+len, "daddr: %#08x\n", self->daddr); len += sprintf(buf+len, "daddr: %#08x\n", self->daddr);
len += sprintf(buf+len, " win size: %d, ", len += sprintf(buf+len, " win size: %d, ",
self->window_size); self->window_size);
len += sprintf(buf+len, "win: %d, ", self->window); len += sprintf(buf+len, "win: %d, ", self->window);
#if CONFIG_IRDA_DYNAMIC_WINDOW #if CONFIG_IRDA_DYNAMIC_WINDOW
len += sprintf(buf+len, "line capacity: %d, ", len += sprintf(buf+len, "line capacity: %d, ",
self->line_capacity); self->line_capacity);
len += sprintf(buf+len, "bytes left: %d\n", self->bytes_left); len += sprintf(buf+len, "bytes left: %d\n", self->bytes_left);
#endif /* CONFIG_IRDA_DYNAMIC_WINDOW */ #endif /* CONFIG_IRDA_DYNAMIC_WINDOW */
len += sprintf(buf+len, " tx queue len: %d ", len += sprintf(buf+len, " tx queue len: %d ",
skb_queue_len(&self->txq)); skb_queue_len(&self->txq));
len += sprintf(buf+len, "win queue len: %d ", len += sprintf(buf+len, "win queue len: %d ",
skb_queue_len(&self->wx_list)); skb_queue_len(&self->wx_list));
len += sprintf(buf+len, "rbusy: %s", self->remote_busy ? len += sprintf(buf+len, "rbusy: %s", self->remote_busy ?
"TRUE" : "FALSE"); "TRUE" : "FALSE");
len += sprintf(buf+len, " mbusy: %s\n", self->media_busy ? len += sprintf(buf+len, " mbusy: %s\n", self->media_busy ?
"TRUE" : "FALSE"); "TRUE" : "FALSE");
len += sprintf(buf+len, " retrans: %d ", self->retry_count); len += sprintf(buf+len, " retrans: %d ", self->retry_count);
len += sprintf(buf+len, "vs: %d ", self->vs); len += sprintf(buf+len, "vs: %d ", self->vs);
len += sprintf(buf+len, "vr: %d ", self->vr); len += sprintf(buf+len, "vr: %d ", self->vr);
len += sprintf(buf+len, "va: %d\n", self->va); len += sprintf(buf+len, "va: %d\n", self->va);
len += sprintf(buf+len, " qos\tbps\tmaxtt\tdsize\twinsize\taddbofs\tmintt\tldisc\tcomp\n"); len += sprintf(buf+len, " qos\tbps\tmaxtt\tdsize\twinsize\taddbofs\tmintt\tldisc\tcomp\n");
len += sprintf(buf+len, " tx\t%d\t", len += sprintf(buf+len, " tx\t%d\t",
self->qos_tx.baud_rate.value); self->qos_tx.baud_rate.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_tx.max_turn_time.value); self->qos_tx.max_turn_time.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_tx.data_size.value); self->qos_tx.data_size.value);
...@@ -1150,15 +1140,15 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1150,15 +1140,15 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
self->qos_tx.window_size.value); self->qos_tx.window_size.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_tx.additional_bofs.value); self->qos_tx.additional_bofs.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_tx.min_turn_time.value); self->qos_tx.min_turn_time.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_tx.link_disc_time.value); self->qos_tx.link_disc_time.value);
len += sprintf(buf+len, "\n"); len += sprintf(buf+len, "\n");
len += sprintf(buf+len, " rx\t%d\t", len += sprintf(buf+len, " rx\t%d\t",
self->qos_rx.baud_rate.value); self->qos_rx.baud_rate.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_rx.max_turn_time.value); self->qos_rx.max_turn_time.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_rx.data_size.value); self->qos_rx.data_size.value);
...@@ -1166,12 +1156,12 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1166,12 +1156,12 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
self->qos_rx.window_size.value); self->qos_rx.window_size.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_rx.additional_bofs.value); self->qos_rx.additional_bofs.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_rx.min_turn_time.value); self->qos_rx.min_turn_time.value);
len += sprintf(buf+len, "%d\t", len += sprintf(buf+len, "%d\t",
self->qos_rx.link_disc_time.value); self->qos_rx.link_disc_time.value);
len += sprintf(buf+len, "\n"); len += sprintf(buf+len, "\n");
self = (struct irlap_cb *) hashbin_get_next(irlap); self = (struct irlap_cb *) hashbin_get_next(irlap);
} }
restore_flags(flags); restore_flags(flags);
...@@ -1180,4 +1170,3 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len) ...@@ -1180,4 +1170,3 @@ int irlap_proc_read(char *buf, char **start, off_t offset, int len)
} }
#endif /* CONFIG_PROC_FS */ #endif /* CONFIG_PROC_FS */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment