Home
last modified time | relevance | path

Searched refs:extra_space (Results 1 – 7 of 7) sorted by relevance

/openbmc/openbmc/poky/scripts/lib/wic/plugins/imager/
H A Ddirect.py81 options.extra_space)
303 def __init__(self, path, ptable_format, partitions, native_sysroot=None, extra_space=0): argument
327 self.extra_space = extra_space
501 self.min_size += self.extra_space
/openbmc/openbmc/poky/scripts/lib/wic/
H A Dpartition.py31 self.extra_space = args.extra_space
107 if extra_blocks < self.extra_space:
108 extra_blocks = self.extra_space
H A Dksparser.py268 if parsed.overhead_factor or parsed.extra_space:
281 parsed.extra_space = self.DEFAULT_EXTRA_SPACE
/openbmc/openbmc/poky/meta/recipes-devtools/gcc/gcc/
H A D0017-Search-target-sysroot-gcc-version-specific-dirs-with.patch61 len = paths->max_len + extra_space + 1;
/openbmc/linux/drivers/net/wireless/ath/ath12k/
H A Ddp_rx.c2916 int extra_space; in ath12k_dp_rx_h_defrag() local
2951 extra_space = msdu_len - (DP_RX_BUFFER_SIZE + skb_tailroom(first_frag)); in ath12k_dp_rx_h_defrag()
2952 if (extra_space > 0 && in ath12k_dp_rx_h_defrag()
2953 (pskb_expand_head(first_frag, 0, extra_space, GFP_ATOMIC) < 0)) in ath12k_dp_rx_h_defrag()
/openbmc/linux/drivers/net/wireless/ath/ath11k/
H A Ddp_rx.c3310 int extra_space; in ath11k_dp_rx_h_defrag() local
3346 extra_space = msdu_len - (DP_RX_BUFFER_SIZE + skb_tailroom(first_frag)); in ath11k_dp_rx_h_defrag()
3347 if (extra_space > 0 && in ath11k_dp_rx_h_defrag()
3348 (pskb_expand_head(first_frag, 0, extra_space, GFP_ATOMIC) < 0)) in ath11k_dp_rx_h_defrag()
/openbmc/linux/drivers/md/
H A Ddm-integrity.c1796 unsigned int extra_space = unlikely(digest_size > ic->tag_size) ? digest_size - ic->tag_size : 0; in integrity_metadata() local
1805 …kmalloc((PAGE_SIZE >> SECTOR_SHIFT >> ic->sb->log2_sectors_per_block) * ic->tag_size + extra_space, in integrity_metadata()
1811 if (WARN_ON(extra_space && in integrity_metadata()