drm/radeon: 9800 SE has only one quadpipe
[safe/jmp/linux-2.6] / drivers / staging / batman-adv / aggregation.c
1 /*
2  * Copyright (C) 2007-2009 B.A.T.M.A.N. contributors:
3  *
4  * Marek Lindner, Simon Wunderlich
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of version 2 of the GNU General Public
8  * License as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18  * 02110-1301, USA
19  *
20  */
21
22 #include "main.h"
23 #include "aggregation.h"
24 #include "send.h"
25 #include "routing.h"
26
27 /* calculate the size of the hna information for a given packet */
28 static int hna_len(struct batman_packet *batman_packet)
29 {
30         return batman_packet->num_hna * ETH_ALEN;
31 }
32
33 /* return true if new_packet can be aggregated with forw_packet */
34 static bool can_aggregate_with(struct batman_packet *new_batman_packet,
35                                int packet_len,
36                                unsigned long send_time,
37                                bool directlink,
38                                struct batman_if *if_incoming,
39                                struct forw_packet *forw_packet)
40 {
41         struct batman_packet *batman_packet =
42                 (struct batman_packet *)forw_packet->packet_buff;
43         int aggregated_bytes = forw_packet->packet_len + packet_len;
44
45         /**
46          * we can aggregate the current packet to this aggregated packet
47          * if:
48          *
49          * - the send time is within our MAX_AGGREGATION_MS time
50          * - the resulting packet wont be bigger than
51          *   MAX_AGGREGATION_BYTES
52          */
53
54         if (time_before(send_time, forw_packet->send_time) &&
55             (aggregated_bytes <= MAX_AGGREGATION_BYTES)) {
56
57                 /**
58                  * check aggregation compatibility
59                  * -> direct link packets are broadcasted on
60                  *    their interface only
61                  * -> aggregate packet if the current packet is
62                  *    a "global" packet as well as the base
63                  *    packet
64                  */
65
66                 /* packets without direct link flag and high TTL
67                  * are flooded through the net  */
68                 if ((!directlink) &&
69                     (!(batman_packet->flags & DIRECTLINK)) &&
70                     (batman_packet->ttl != 1) &&
71
72                     /* own packets originating non-primary
73                      * interfaces leave only that interface */
74                     ((!forw_packet->own) ||
75                      (forw_packet->if_incoming->if_num == 0)))
76                         return true;
77
78                 /* if the incoming packet is sent via this one
79                  * interface only - we still can aggregate */
80                 if ((directlink) &&
81                     (new_batman_packet->ttl == 1) &&
82                     (forw_packet->if_incoming == if_incoming))
83                         return true;
84
85         }
86
87         return false;
88 }
89
90 /* create a new aggregated packet and add this packet to it */
91 static void new_aggregated_packet(unsigned char *packet_buff,
92                            int packet_len,
93                            unsigned long send_time,
94                            bool direct_link,
95                            struct batman_if *if_incoming,
96                            int own_packet)
97 {
98         struct forw_packet *forw_packet_aggr;
99         unsigned long flags;
100
101         forw_packet_aggr = kmalloc(sizeof(struct forw_packet), GFP_ATOMIC);
102         if (!forw_packet_aggr)
103                 return;
104
105         forw_packet_aggr->packet_buff = kmalloc(MAX_AGGREGATION_BYTES,
106                                                 GFP_ATOMIC);
107         if (!forw_packet_aggr->packet_buff) {
108                 kfree(forw_packet_aggr);
109                 return;
110         }
111
112         INIT_HLIST_NODE(&forw_packet_aggr->list);
113
114         forw_packet_aggr->packet_len = packet_len;
115         memcpy(forw_packet_aggr->packet_buff,
116                packet_buff,
117                forw_packet_aggr->packet_len);
118
119         forw_packet_aggr->skb = NULL;
120         forw_packet_aggr->own = own_packet;
121         forw_packet_aggr->if_incoming = if_incoming;
122         forw_packet_aggr->num_packets = 0;
123         forw_packet_aggr->direct_link_flags = 0;
124         forw_packet_aggr->send_time = send_time;
125
126         /* save packet direct link flag status */
127         if (direct_link)
128                 forw_packet_aggr->direct_link_flags |= 1;
129
130         /* add new packet to packet list */
131         spin_lock_irqsave(&forw_bat_list_lock, flags);
132         hlist_add_head(&forw_packet_aggr->list, &forw_bat_list);
133         spin_unlock_irqrestore(&forw_bat_list_lock, flags);
134
135         /* start timer for this packet */
136         INIT_DELAYED_WORK(&forw_packet_aggr->delayed_work,
137                           send_outstanding_bat_packet);
138         queue_delayed_work(bat_event_workqueue,
139                            &forw_packet_aggr->delayed_work,
140                            send_time - jiffies);
141 }
142
143 /* aggregate a new packet into the existing aggregation */
144 static void aggregate(struct forw_packet *forw_packet_aggr,
145                       unsigned char *packet_buff,
146                       int packet_len,
147                       bool direct_link)
148 {
149         memcpy((forw_packet_aggr->packet_buff + forw_packet_aggr->packet_len),
150                packet_buff, packet_len);
151         forw_packet_aggr->packet_len += packet_len;
152         forw_packet_aggr->num_packets++;
153
154         /* save packet direct link flag status */
155         if (direct_link)
156                 forw_packet_aggr->direct_link_flags |=
157                         (1 << forw_packet_aggr->num_packets);
158 }
159
160 void add_bat_packet_to_list(unsigned char *packet_buff, int packet_len,
161                             struct batman_if *if_incoming, char own_packet,
162                             unsigned long send_time)
163 {
164         /**
165          * _aggr -> pointer to the packet we want to aggregate with
166          * _pos -> pointer to the position in the queue
167          */
168         struct forw_packet *forw_packet_aggr = NULL, *forw_packet_pos = NULL;
169         struct hlist_node *tmp_node;
170         struct batman_packet *batman_packet =
171                 (struct batman_packet *)packet_buff;
172         bool direct_link = batman_packet->flags & DIRECTLINK ? 1 : 0;
173         unsigned long flags;
174
175         /* find position for the packet in the forward queue */
176         spin_lock_irqsave(&forw_bat_list_lock, flags);
177         /* own packets are not to be aggregated */
178         if ((atomic_read(&aggregation_enabled)) && (!own_packet)) {
179                 hlist_for_each_entry(forw_packet_pos, tmp_node, &forw_bat_list,
180                                      list) {
181                         if (can_aggregate_with(batman_packet,
182                                                packet_len,
183                                                send_time,
184                                                direct_link,
185                                                if_incoming,
186                                                forw_packet_pos)) {
187                                 forw_packet_aggr = forw_packet_pos;
188                                 break;
189                         }
190                 }
191         }
192
193         /* nothing to aggregate with - either aggregation disabled or no
194          * suitable aggregation packet found */
195         if (forw_packet_aggr == NULL) {
196                 /* the following section can run without the lock */
197                 spin_unlock_irqrestore(&forw_bat_list_lock, flags);
198                 new_aggregated_packet(packet_buff, packet_len,
199                                       send_time, direct_link,
200                                       if_incoming, own_packet);
201         } else {
202                 aggregate(forw_packet_aggr,
203                           packet_buff, packet_len,
204                           direct_link);
205                 spin_unlock_irqrestore(&forw_bat_list_lock, flags);
206         }
207 }
208
209 /* unpack the aggregated packets and process them one by one */
210 void receive_aggr_bat_packet(struct ethhdr *ethhdr, unsigned char *packet_buff,
211                              int packet_len, struct batman_if *if_incoming)
212 {
213         struct batman_packet *batman_packet;
214         int buff_pos = 0;
215         unsigned char *hna_buff;
216
217         batman_packet = (struct batman_packet *)packet_buff;
218
219         while (aggregated_packet(buff_pos, packet_len,
220                                  batman_packet->num_hna)) {
221
222                 /* network to host order for our 16bit seqno, and the
223                    orig_interval. */
224                 batman_packet->seqno = ntohs(batman_packet->seqno);
225
226                 hna_buff = packet_buff + buff_pos + BAT_PACKET_LEN;
227                 receive_bat_packet(ethhdr, batman_packet,
228                                    hna_buff, hna_len(batman_packet),
229                                    if_incoming);
230
231                 buff_pos += BAT_PACKET_LEN + hna_len(batman_packet);
232                 batman_packet = (struct batman_packet *)
233                         (packet_buff + buff_pos);
234         }
235 }