Age | Commit message (Expand) | Author |
2024-11-06 | Use atomic load and store operations for sbchecklowmem(). | Alexander Bluhm |
2024-09-10 | Fix build of m_print_chain() on sparc64. | Alexander Bluhm |
2024-09-09 | Print mbuf size also for non cluster. | Alexander Bluhm |
2024-09-05 | In ddb(4) print mbuf chain and packet list. | Alexander Bluhm |
2024-08-29 | Show expensive mbuf operations in netstat(1) statistics. | Alexander Bluhm |
2024-03-05 | Revert m_defrag() mbuf alignment to IP header. | Alexander Bluhm |
2024-02-21 | Keep mbuf data alignment intact in m_defrag() | Claudio Jeker |
2023-10-20 | Avoid assertion failure when splitting mbuf cluster. | Alexander Bluhm |
2023-06-23 | Avoid division by 0 in m_pool_used | Greg Steuck |
2023-05-16 | Always set maximum queue length to passed in the IFQCTL_MAXLEN case. | Vitaliy Makkoveev |
2023-05-05 | The mbuf_queue API allows read access to integer variables which | Alexander Bluhm |
2022-08-14 | remove unneeded includes in sys/kern | Jonathan Gray |
2022-02-22 | Delete unnecessary #includes of <sys/domain.h> and/or <sys/protosw.h> | Philip Guenther |
2022-02-14 | update sbchecklowmem() to better detect actual mbuf memory usage. | David Gwynne |
2022-02-08 | use sizeof(long) - 1 in m_pullup to determine payload alignment. | David Gwynne |
2022-01-18 | Properly handle read-only clusters in m_pullup(9). | Alexander Bluhm |
2021-03-06 | ansi | Jonathan Gray |
2021-02-25 | let m_copydata use a void * instead of caddr_t | David Gwynne |
2021-01-13 | Convert mbuf type KDASSERT() to a proper KASSERT() in m_get(9). | Alexander Bluhm |
2020-12-12 | Rename the macro MCLGETI to MCLGETL and removes the dead parameter ifp. | jan |
2020-06-21 | add mq_push. it's like mq_enqueue, but drops from the head, not the tail. | David Gwynne |
2020-01-22 | add ml_hdatalen and mq_hdatalen as workalikes of ifq_hdatalen. | David Gwynne |
2019-10-22 | Replace the mutex that protects the mbuf allocation limit by an | Alexander Bluhm |
2019-07-19 | After the kernel has reached the sysclt kern.maxclusters limit, | Alexander Bluhm |
2019-07-16 | Fix uipc white spaces. | Alexander Bluhm |
2019-07-16 | Prevent integer overflow in kernel and userland when checking mbuf | Alexander Bluhm |
2019-06-10 | add m_microtime for getting the wall clock time associated with a packet | David Gwynne |
2019-02-10 | revert revert revert. there are many other archs that use custom allocs. | Ted Unangst |
2019-02-10 | make it possible to reduce kmem pressure by letting some pools use a more | Ted Unangst |
2019-02-01 | make m_pullup use the first mbuf with data to measure alignment. | David Gwynne |
2019-01-09 | Eliminate an else branch from m_extunref(). | Visa Hankala |
2019-01-08 | If the mbuf cluster in m_zero() is read only, propagate the M_ZEROIZE | Alexander Bluhm |
2019-01-07 | It is possible to call m_zero with a read-only cluster. In that case just | Claudio Jeker |
2018-11-30 | Trivial MH_ALIGN/M_ALIGN to m_align conversions. | Claudio Jeker |
2018-11-12 | Introduce m_align() a function that works like M_ALIGN() but works with | Claudio Jeker |
2018-11-09 | M_LEADINGSPACE() and M_TRAILINGSPACE() are just wrappers for | Claudio Jeker |
2018-09-13 | Add reference counting for inet pcb, this will be needed when we | Alexander Bluhm |
2018-09-10 | Instead of calculating the mbuf packet header length here and there, | Alexander Bluhm |
2018-09-10 | During fragment reassembly, mbuf chains with packet headers were | Alexander Bluhm |
2018-03-18 | NULL deref on armv7 performing NFS, within 10 seconds. | Theo de Raadt |
2018-03-13 | make m_pullup skip over empty mbufs when finding the payload alignment. | David Gwynne |
2018-03-12 | make m_adj keep m_data aligned when removing all the data in an mbuf. | David Gwynne |
2018-01-16 | garbage collect an unused variable | Sebastian Benoit |
2017-12-29 | Make sure that pf_mbuf_link_state_key() does not overwrite an | Alexander Bluhm |
2017-12-29 | Make the functions which link the pf state keys to mbufs, inpcbs, | Alexander Bluhm |
2017-10-12 | Move sysctl_mq() where it can safely mess with mbuf queue internals. | Martin Pieuchot |
2017-09-15 | Coverity complained that the while loop at the end of m_adj() could | Alexander Bluhm |
2017-05-27 | Put an assert that M_PKTHDR is set before accessing m_pkthdr in the | Alexander Bluhm |
2017-05-27 | Refactor m_makespace() using MCLGETI to simplify the logic of this function. | Claudio Jeker |
2017-05-08 | add a compile time assertion MSIZE == sizeof(struct mbuf) | Ted Unangst |