fragmentation.c (a943e8bc058977663ba1e42389d4f5643cf2ae9e) | fragmentation.c (fec149f5d3234c037ec761d1db4cc8c0550e9964) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) 2013-2017 B.A.T.M.A.N. contributors: 3 * 4 * Martin Hundebøll <martin@hundeboll.net> 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. --- 19 unchanged lines hidden (view full) --- 28#include <linux/jiffies.h> 29#include <linux/kernel.h> 30#include <linux/lockdep.h> 31#include <linux/netdevice.h> 32#include <linux/skbuff.h> 33#include <linux/slab.h> 34#include <linux/spinlock.h> 35#include <linux/string.h> | 1// SPDX-License-Identifier: GPL-2.0 2/* Copyright (C) 2013-2017 B.A.T.M.A.N. contributors: 3 * 4 * Martin Hundebøll <martin@hundeboll.net> 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. --- 19 unchanged lines hidden (view full) --- 28#include <linux/jiffies.h> 29#include <linux/kernel.h> 30#include <linux/lockdep.h> 31#include <linux/netdevice.h> 32#include <linux/skbuff.h> 33#include <linux/slab.h> 34#include <linux/spinlock.h> 35#include <linux/string.h> |
36#include <uapi/linux/batadv_packet.h> |
|
36 37#include "hard-interface.h" 38#include "originator.h" | 37 38#include "hard-interface.h" 39#include "originator.h" |
39#include "packet.h" | |
40#include "routing.h" 41#include "send.h" 42#include "soft-interface.h" 43 44/** 45 * batadv_frag_clear_chain() - delete entries in the fragment buffer chain 46 * @head: head of chain with entries. 47 * @dropped: whether the chain is cleared because all fragments are dropped --- 512 unchanged lines hidden --- | 40#include "routing.h" 41#include "send.h" 42#include "soft-interface.h" 43 44/** 45 * batadv_frag_clear_chain() - delete entries in the fragment buffer chain 46 * @head: head of chain with entries. 47 * @dropped: whether the chain is cleared because all fragments are dropped --- 512 unchanged lines hidden --- |