2 * This file is part of the Chelsio T4 Ethernet driver for Linux.
4 * Copyright (c) 2003-2014 Chelsio Communications, Inc. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
35 #include <linux/skbuff.h>
36 #include <linux/netdevice.h>
38 #include <linux/if_vlan.h>
39 #include <linux/jhash.h>
40 #include <linux/module.h>
41 #include <linux/debugfs.h>
42 #include <linux/seq_file.h>
43 #include <net/neighbour.h>
49 #include "t4_values.h"
51 /* identifies sync vs async L2T_WRITE_REQs */
53 #define SYNC_WR_V(x) ((x) << SYNC_WR_S)
54 #define SYNC_WR_F SYNC_WR_V(1)
57 unsigned int l2t_start
; /* start index of our piece of the L2T */
58 unsigned int l2t_size
; /* number of entries in l2tab */
60 atomic_t nfree
; /* number of free entries */
61 struct l2t_entry
*rover
; /* starting point for next allocation */
62 struct l2t_entry l2tab
[0]; /* MUST BE LAST */
65 static inline unsigned int vlan_prio(const struct l2t_entry
*e
)
67 return e
->vlan
>> VLAN_PRIO_SHIFT
;
70 static inline void l2t_hold(struct l2t_data
*d
, struct l2t_entry
*e
)
72 if (atomic_add_return(1, &e
->refcnt
) == 1) /* 0 -> 1 transition */
73 atomic_dec(&d
->nfree
);
77 * To avoid having to check address families we do not allow v4 and v6
78 * neighbors to be on the same hash chain. We keep v4 entries in the first
79 * half of available hash buckets and v6 in the second. We need at least two
80 * entries in our L2T for this scheme to work.
83 L2T_MIN_HASH_BUCKETS
= 2,
86 static inline unsigned int arp_hash(struct l2t_data
*d
, const u32
*key
,
89 unsigned int l2t_size_half
= d
->l2t_size
/ 2;
91 return jhash_2words(*key
, ifindex
, 0) % l2t_size_half
;
94 static inline unsigned int ipv6_hash(struct l2t_data
*d
, const u32
*key
,
97 unsigned int l2t_size_half
= d
->l2t_size
/ 2;
98 u32
xor = key
[0] ^ key
[1] ^ key
[2] ^ key
[3];
100 return (l2t_size_half
+
101 (jhash_2words(xor, ifindex
, 0) % l2t_size_half
));
104 static unsigned int addr_hash(struct l2t_data
*d
, const u32
*addr
,
105 int addr_len
, int ifindex
)
107 return addr_len
== 4 ? arp_hash(d
, addr
, ifindex
) :
108 ipv6_hash(d
, addr
, ifindex
);
112 * Checks if an L2T entry is for the given IP/IPv6 address. It does not check
113 * whether the L2T entry and the address are of the same address family.
114 * Callers ensure an address is only checked against L2T entries of the same
115 * family, something made trivial by the separation of IP and IPv6 hash chains
116 * mentioned above. Returns 0 if there's a match,
118 static int addreq(const struct l2t_entry
*e
, const u32
*addr
)
121 return (e
->addr
[0] ^ addr
[0]) | (e
->addr
[1] ^ addr
[1]) |
122 (e
->addr
[2] ^ addr
[2]) | (e
->addr
[3] ^ addr
[3]);
123 return e
->addr
[0] ^ addr
[0];
126 static void neigh_replace(struct l2t_entry
*e
, struct neighbour
*n
)
130 neigh_release(e
->neigh
);
135 * Write an L2T entry. Must be called with the entry locked.
136 * The write may be synchronous or asynchronous.
138 static int write_l2e(struct adapter
*adap
, struct l2t_entry
*e
, int sync
)
140 struct l2t_data
*d
= adap
->l2t
;
141 unsigned int l2t_idx
= e
->idx
+ d
->l2t_start
;
143 struct cpl_l2t_write_req
*req
;
145 skb
= alloc_skb(sizeof(*req
), GFP_ATOMIC
);
149 req
= __skb_put(skb
, sizeof(*req
));
152 OPCODE_TID(req
) = htonl(MK_OPCODE_TID(CPL_L2T_WRITE_REQ
,
153 l2t_idx
| (sync
? SYNC_WR_F
: 0) |
154 TID_QID_V(adap
->sge
.fw_evtq
.abs_id
)));
155 req
->params
= htons(L2T_W_PORT_V(e
->lport
) | L2T_W_NOREPLY_V(!sync
));
156 req
->l2t_idx
= htons(l2t_idx
);
157 req
->vlan
= htons(e
->vlan
);
158 if (e
->neigh
&& !(e
->neigh
->dev
->flags
& IFF_LOOPBACK
))
159 memcpy(e
->dmac
, e
->neigh
->ha
, sizeof(e
->dmac
));
160 memcpy(req
->dst_mac
, e
->dmac
, sizeof(req
->dst_mac
));
162 t4_mgmt_tx(adap
, skb
);
164 if (sync
&& e
->state
!= L2T_STATE_SWITCHING
)
165 e
->state
= L2T_STATE_SYNC_WRITE
;
170 * Send packets waiting in an L2T entry's ARP queue. Must be called with the
173 static void send_pending(struct adapter
*adap
, struct l2t_entry
*e
)
177 while ((skb
= __skb_dequeue(&e
->arpq
)) != NULL
)
178 t4_ofld_send(adap
, skb
);
182 * Process a CPL_L2T_WRITE_RPL. Wake up the ARP queue if it completes a
183 * synchronous L2T_WRITE. Note that the TID in the reply is really the L2T
184 * index it refers to.
186 void do_l2t_write_rpl(struct adapter
*adap
, const struct cpl_l2t_write_rpl
*rpl
)
188 struct l2t_data
*d
= adap
->l2t
;
189 unsigned int tid
= GET_TID(rpl
);
190 unsigned int l2t_idx
= tid
% L2T_SIZE
;
192 if (unlikely(rpl
->status
!= CPL_ERR_NONE
)) {
193 dev_err(adap
->pdev_dev
,
194 "Unexpected L2T_WRITE_RPL status %u for entry %u\n",
195 rpl
->status
, l2t_idx
);
199 if (tid
& SYNC_WR_F
) {
200 struct l2t_entry
*e
= &d
->l2tab
[l2t_idx
- d
->l2t_start
];
203 if (e
->state
!= L2T_STATE_SWITCHING
) {
204 send_pending(adap
, e
);
205 e
->state
= (e
->neigh
->nud_state
& NUD_STALE
) ?
206 L2T_STATE_STALE
: L2T_STATE_VALID
;
208 spin_unlock(&e
->lock
);
213 * Add a packet to an L2T entry's queue of packets awaiting resolution.
214 * Must be called with the entry's lock held.
216 static inline void arpq_enqueue(struct l2t_entry
*e
, struct sk_buff
*skb
)
218 __skb_queue_tail(&e
->arpq
, skb
);
221 int cxgb4_l2t_send(struct net_device
*dev
, struct sk_buff
*skb
,
224 struct adapter
*adap
= netdev2adap(dev
);
228 case L2T_STATE_STALE
: /* entry is stale, kick off revalidation */
229 neigh_event_send(e
->neigh
, NULL
);
230 spin_lock_bh(&e
->lock
);
231 if (e
->state
== L2T_STATE_STALE
)
232 e
->state
= L2T_STATE_VALID
;
233 spin_unlock_bh(&e
->lock
);
235 case L2T_STATE_VALID
: /* fast-path, send the packet on */
236 return t4_ofld_send(adap
, skb
);
237 case L2T_STATE_RESOLVING
:
238 case L2T_STATE_SYNC_WRITE
:
239 spin_lock_bh(&e
->lock
);
240 if (e
->state
!= L2T_STATE_SYNC_WRITE
&&
241 e
->state
!= L2T_STATE_RESOLVING
) {
242 spin_unlock_bh(&e
->lock
);
245 arpq_enqueue(e
, skb
);
246 spin_unlock_bh(&e
->lock
);
248 if (e
->state
== L2T_STATE_RESOLVING
&&
249 !neigh_event_send(e
->neigh
, NULL
)) {
250 spin_lock_bh(&e
->lock
);
251 if (e
->state
== L2T_STATE_RESOLVING
&&
252 !skb_queue_empty(&e
->arpq
))
253 write_l2e(adap
, e
, 1);
254 spin_unlock_bh(&e
->lock
);
259 EXPORT_SYMBOL(cxgb4_l2t_send
);
262 * Allocate a free L2T entry. Must be called with l2t_data.lock held.
264 static struct l2t_entry
*alloc_l2e(struct l2t_data
*d
)
266 struct l2t_entry
*end
, *e
, **p
;
268 if (!atomic_read(&d
->nfree
))
271 /* there's definitely a free entry */
272 for (e
= d
->rover
, end
= &d
->l2tab
[d
->l2t_size
]; e
!= end
; ++e
)
273 if (atomic_read(&e
->refcnt
) == 0)
276 for (e
= d
->l2tab
; atomic_read(&e
->refcnt
); ++e
)
280 atomic_dec(&d
->nfree
);
283 * The entry we found may be an inactive entry that is
284 * presently in the hash table. We need to remove it.
286 if (e
->state
< L2T_STATE_SWITCHING
)
287 for (p
= &d
->l2tab
[e
->hash
].first
; *p
; p
= &(*p
)->next
)
294 e
->state
= L2T_STATE_UNUSED
;
298 static struct l2t_entry
*find_or_alloc_l2e(struct l2t_data
*d
, u16 vlan
,
301 struct l2t_entry
*end
, *e
, **p
;
302 struct l2t_entry
*first_free
= NULL
;
304 for (e
= &d
->l2tab
[0], end
= &d
->l2tab
[d
->l2t_size
]; e
!= end
; ++e
) {
305 if (atomic_read(&e
->refcnt
) == 0) {
309 if (e
->state
== L2T_STATE_SWITCHING
) {
310 if (ether_addr_equal(e
->dmac
, dmac
) &&
311 (e
->vlan
== vlan
) && (e
->lport
== port
))
325 /* The entry we found may be an inactive entry that is
326 * presently in the hash table. We need to remove it.
328 if (e
->state
< L2T_STATE_SWITCHING
)
329 for (p
= &d
->l2tab
[e
->hash
].first
; *p
; p
= &(*p
)->next
)
335 e
->state
= L2T_STATE_UNUSED
;
341 /* Called when an L2T entry has no more users. The entry is left in the hash
342 * table since it is likely to be reused but we also bump nfree to indicate
343 * that the entry can be reallocated for a different neighbor. We also drop
344 * the existing neighbor reference in case the neighbor is going away and is
345 * waiting on our reference.
347 * Because entries can be reallocated to other neighbors once their ref count
348 * drops to 0 we need to take the entry's lock to avoid races with a new
351 static void _t4_l2e_free(struct l2t_entry
*e
)
355 if (atomic_read(&e
->refcnt
) == 0) { /* hasn't been recycled */
357 neigh_release(e
->neigh
);
360 __skb_queue_purge(&e
->arpq
);
363 d
= container_of(e
, struct l2t_data
, l2tab
[e
->idx
]);
364 atomic_inc(&d
->nfree
);
367 /* Locked version of _t4_l2e_free */
368 static void t4_l2e_free(struct l2t_entry
*e
)
372 spin_lock_bh(&e
->lock
);
373 if (atomic_read(&e
->refcnt
) == 0) { /* hasn't been recycled */
375 neigh_release(e
->neigh
);
378 __skb_queue_purge(&e
->arpq
);
380 spin_unlock_bh(&e
->lock
);
382 d
= container_of(e
, struct l2t_data
, l2tab
[e
->idx
]);
383 atomic_inc(&d
->nfree
);
386 void cxgb4_l2t_release(struct l2t_entry
*e
)
388 if (atomic_dec_and_test(&e
->refcnt
))
391 EXPORT_SYMBOL(cxgb4_l2t_release
);
394 * Update an L2T entry that was previously used for the same next hop as neigh.
395 * Must be called with softirqs disabled.
397 static void reuse_entry(struct l2t_entry
*e
, struct neighbour
*neigh
)
399 unsigned int nud_state
;
401 spin_lock(&e
->lock
); /* avoid race with t4_l2t_free */
402 if (neigh
!= e
->neigh
)
403 neigh_replace(e
, neigh
);
404 nud_state
= neigh
->nud_state
;
405 if (memcmp(e
->dmac
, neigh
->ha
, sizeof(e
->dmac
)) ||
406 !(nud_state
& NUD_VALID
))
407 e
->state
= L2T_STATE_RESOLVING
;
408 else if (nud_state
& NUD_CONNECTED
)
409 e
->state
= L2T_STATE_VALID
;
411 e
->state
= L2T_STATE_STALE
;
412 spin_unlock(&e
->lock
);
415 struct l2t_entry
*cxgb4_l2t_get(struct l2t_data
*d
, struct neighbour
*neigh
,
416 const struct net_device
*physdev
,
417 unsigned int priority
)
422 unsigned int addr_len
= neigh
->tbl
->key_len
;
423 u32
*addr
= (u32
*)neigh
->primary_key
;
424 int ifidx
= neigh
->dev
->ifindex
;
425 int hash
= addr_hash(d
, addr
, addr_len
, ifidx
);
427 if (neigh
->dev
->flags
& IFF_LOOPBACK
)
428 lport
= netdev2pinfo(physdev
)->tx_chan
+ 4;
430 lport
= netdev2pinfo(physdev
)->lport
;
432 if (is_vlan_dev(neigh
->dev
)) {
433 vlan
= vlan_dev_vlan_id(neigh
->dev
);
434 vlan
|= vlan_dev_get_egress_qos_mask(neigh
->dev
, priority
);
439 write_lock_bh(&d
->lock
);
440 for (e
= d
->l2tab
[hash
].first
; e
; e
= e
->next
)
441 if (!addreq(e
, addr
) && e
->ifindex
== ifidx
&&
442 e
->vlan
== vlan
&& e
->lport
== lport
) {
444 if (atomic_read(&e
->refcnt
) == 1)
445 reuse_entry(e
, neigh
);
449 /* Need to allocate a new entry */
452 spin_lock(&e
->lock
); /* avoid race with t4_l2t_free */
453 e
->state
= L2T_STATE_RESOLVING
;
454 if (neigh
->dev
->flags
& IFF_LOOPBACK
)
455 memcpy(e
->dmac
, physdev
->dev_addr
, sizeof(e
->dmac
));
456 memcpy(e
->addr
, addr
, addr_len
);
460 e
->v6
= addr_len
== 16;
461 atomic_set(&e
->refcnt
, 1);
462 neigh_replace(e
, neigh
);
464 e
->next
= d
->l2tab
[hash
].first
;
465 d
->l2tab
[hash
].first
= e
;
466 spin_unlock(&e
->lock
);
469 write_unlock_bh(&d
->lock
);
472 EXPORT_SYMBOL(cxgb4_l2t_get
);
474 u64
cxgb4_select_ntuple(struct net_device
*dev
,
475 const struct l2t_entry
*l2t
)
477 struct adapter
*adap
= netdev2adap(dev
);
478 struct tp_params
*tp
= &adap
->params
.tp
;
481 /* Initialize each of the fields which we care about which are present
482 * in the Compressed Filter Tuple.
484 if (tp
->vlan_shift
>= 0 && l2t
->vlan
!= VLAN_NONE
)
485 ntuple
|= (u64
)(FT_VLAN_VLD_F
| l2t
->vlan
) << tp
->vlan_shift
;
487 if (tp
->port_shift
>= 0)
488 ntuple
|= (u64
)l2t
->lport
<< tp
->port_shift
;
490 if (tp
->protocol_shift
>= 0)
491 ntuple
|= (u64
)IPPROTO_TCP
<< tp
->protocol_shift
;
493 if (tp
->vnic_shift
>= 0 && (tp
->ingress_config
& VNIC_F
)) {
494 struct port_info
*pi
= (struct port_info
*)netdev_priv(dev
);
496 ntuple
|= (u64
)(FT_VNID_ID_VF_V(pi
->vin
) |
497 FT_VNID_ID_PF_V(adap
->pf
) |
498 FT_VNID_ID_VLD_V(pi
->vivld
)) << tp
->vnic_shift
;
503 EXPORT_SYMBOL(cxgb4_select_ntuple
);
506 * Called when address resolution fails for an L2T entry to handle packets
507 * on the arpq head. If a packet specifies a failure handler it is invoked,
508 * otherwise the packet is sent to the device.
510 static void handle_failed_resolution(struct adapter
*adap
, struct l2t_entry
*e
)
514 while ((skb
= __skb_dequeue(&e
->arpq
)) != NULL
) {
515 const struct l2t_skb_cb
*cb
= L2T_SKB_CB(skb
);
517 spin_unlock(&e
->lock
);
518 if (cb
->arp_err_handler
)
519 cb
->arp_err_handler(cb
->handle
, skb
);
521 t4_ofld_send(adap
, skb
);
527 * Called when the host's neighbor layer makes a change to some entry that is
528 * loaded into the HW L2 table.
530 void t4_l2t_update(struct adapter
*adap
, struct neighbour
*neigh
)
533 struct sk_buff_head
*arpq
= NULL
;
534 struct l2t_data
*d
= adap
->l2t
;
535 unsigned int addr_len
= neigh
->tbl
->key_len
;
536 u32
*addr
= (u32
*) neigh
->primary_key
;
537 int ifidx
= neigh
->dev
->ifindex
;
538 int hash
= addr_hash(d
, addr
, addr_len
, ifidx
);
540 read_lock_bh(&d
->lock
);
541 for (e
= d
->l2tab
[hash
].first
; e
; e
= e
->next
)
542 if (!addreq(e
, addr
) && e
->ifindex
== ifidx
) {
544 if (atomic_read(&e
->refcnt
))
546 spin_unlock(&e
->lock
);
549 read_unlock_bh(&d
->lock
);
553 read_unlock(&d
->lock
);
555 if (neigh
!= e
->neigh
)
556 neigh_replace(e
, neigh
);
558 if (e
->state
== L2T_STATE_RESOLVING
) {
559 if (neigh
->nud_state
& NUD_FAILED
) {
561 } else if ((neigh
->nud_state
& (NUD_CONNECTED
| NUD_STALE
)) &&
562 !skb_queue_empty(&e
->arpq
)) {
563 write_l2e(adap
, e
, 1);
566 e
->state
= neigh
->nud_state
& NUD_CONNECTED
?
567 L2T_STATE_VALID
: L2T_STATE_STALE
;
568 if (memcmp(e
->dmac
, neigh
->ha
, sizeof(e
->dmac
)))
569 write_l2e(adap
, e
, 0);
573 handle_failed_resolution(adap
, e
);
574 spin_unlock_bh(&e
->lock
);
577 /* Allocate an L2T entry for use by a switching rule. Such need to be
578 * explicitly freed and while busy they are not on any hash chain, so normal
579 * address resolution updates do not see them.
581 struct l2t_entry
*t4_l2t_alloc_switching(struct adapter
*adap
, u16 vlan
,
582 u8 port
, u8
*eth_addr
)
584 struct l2t_data
*d
= adap
->l2t
;
588 write_lock_bh(&d
->lock
);
589 e
= find_or_alloc_l2e(d
, vlan
, port
, eth_addr
);
591 spin_lock(&e
->lock
); /* avoid race with t4_l2t_free */
592 if (!atomic_read(&e
->refcnt
)) {
593 e
->state
= L2T_STATE_SWITCHING
;
596 ether_addr_copy(e
->dmac
, eth_addr
);
597 atomic_set(&e
->refcnt
, 1);
598 ret
= write_l2e(adap
, e
, 0);
601 spin_unlock(&e
->lock
);
602 write_unlock_bh(&d
->lock
);
606 atomic_inc(&e
->refcnt
);
609 spin_unlock(&e
->lock
);
611 write_unlock_bh(&d
->lock
);
616 * @dev: net_device pointer
618 * @port: Associated port
619 * @dmac: Destination MAC address to add to L2T
620 * Returns pointer to the allocated l2t entry
622 * Allocates an L2T entry for use by switching rule of a filter
624 struct l2t_entry
*cxgb4_l2t_alloc_switching(struct net_device
*dev
, u16 vlan
,
627 struct adapter
*adap
= netdev2adap(dev
);
629 return t4_l2t_alloc_switching(adap
, vlan
, port
, dmac
);
631 EXPORT_SYMBOL(cxgb4_l2t_alloc_switching
);
633 struct l2t_data
*t4_init_l2t(unsigned int l2t_start
, unsigned int l2t_end
)
635 unsigned int l2t_size
;
639 if (l2t_start
>= l2t_end
|| l2t_end
>= L2T_SIZE
)
641 l2t_size
= l2t_end
- l2t_start
+ 1;
642 if (l2t_size
< L2T_MIN_HASH_BUCKETS
)
645 d
= kvzalloc(struct_size(d
, l2tab
, l2t_size
), GFP_KERNEL
);
649 d
->l2t_start
= l2t_start
;
650 d
->l2t_size
= l2t_size
;
653 atomic_set(&d
->nfree
, l2t_size
);
654 rwlock_init(&d
->lock
);
656 for (i
= 0; i
< d
->l2t_size
; ++i
) {
658 d
->l2tab
[i
].state
= L2T_STATE_UNUSED
;
659 spin_lock_init(&d
->l2tab
[i
].lock
);
660 atomic_set(&d
->l2tab
[i
].refcnt
, 0);
661 skb_queue_head_init(&d
->l2tab
[i
].arpq
);
666 static inline void *l2t_get_idx(struct seq_file
*seq
, loff_t pos
)
668 struct l2t_data
*d
= seq
->private;
670 return pos
>= d
->l2t_size
? NULL
: &d
->l2tab
[pos
];
673 static void *l2t_seq_start(struct seq_file
*seq
, loff_t
*pos
)
675 return *pos
? l2t_get_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
678 static void *l2t_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
680 v
= l2t_get_idx(seq
, *pos
);
685 static void l2t_seq_stop(struct seq_file
*seq
, void *v
)
689 static char l2e_state(const struct l2t_entry
*e
)
692 case L2T_STATE_VALID
: return 'V';
693 case L2T_STATE_STALE
: return 'S';
694 case L2T_STATE_SYNC_WRITE
: return 'W';
695 case L2T_STATE_RESOLVING
:
696 return skb_queue_empty(&e
->arpq
) ? 'R' : 'A';
697 case L2T_STATE_SWITCHING
: return 'X';
703 static int l2t_seq_show(struct seq_file
*seq
, void *v
)
705 if (v
== SEQ_START_TOKEN
)
706 seq_puts(seq
, " Idx IP address "
707 "Ethernet address VLAN/P LP State Users Port\n");
710 struct l2t_data
*d
= seq
->private;
711 struct l2t_entry
*e
= v
;
713 spin_lock_bh(&e
->lock
);
714 if (e
->state
== L2T_STATE_SWITCHING
)
717 sprintf(ip
, e
->v6
? "%pI6c" : "%pI4", e
->addr
);
718 seq_printf(seq
, "%4u %-25s %17pM %4d %u %2u %c %5u %s\n",
719 e
->idx
+ d
->l2t_start
, ip
, e
->dmac
,
720 e
->vlan
& VLAN_VID_MASK
, vlan_prio(e
), e
->lport
,
721 l2e_state(e
), atomic_read(&e
->refcnt
),
722 e
->neigh
? e
->neigh
->dev
->name
: "");
723 spin_unlock_bh(&e
->lock
);
728 static const struct seq_operations l2t_seq_ops
= {
729 .start
= l2t_seq_start
,
730 .next
= l2t_seq_next
,
731 .stop
= l2t_seq_stop
,
735 static int l2t_seq_open(struct inode
*inode
, struct file
*file
)
737 int rc
= seq_open(file
, &l2t_seq_ops
);
740 struct adapter
*adap
= inode
->i_private
;
741 struct seq_file
*seq
= file
->private_data
;
743 seq
->private = adap
->l2t
;
748 const struct file_operations t4_l2t_fops
= {
749 .owner
= THIS_MODULE
,
750 .open
= l2t_seq_open
,
753 .release
= seq_release
,