Folks, in the discussion about preempt count consistency across kernel configurations: https://lore.kernel.org/r/20200914204209.256266093@xxxxxxxxxxxxx/ Linus clearly requested that code in drivers and libraries which changes behaviour based on execution context should either be split up so that e.g. task context invocations and BH invocations have different interfaces or if that's not possible the context information has to be provided by the caller which knows in which context it is executing. This series is removing the gfp_type() usage which uses in_interrupt(). Overall it appears to be a nice cleanup according to the diffstat. v1…v2: - Use the pointer from skb_put()/push() instead having it on stack. - Collect acks for patch 4-6. Sebastian