+2
−2
Loading
mainline inclusion from mainline-v6.8-rc1 commit 1075ee66a8c19bfa375b19c236fd6a22a867f138 category: feature bugzilla: https://gitee.com/openeuler/intel-kernel/issues/I9TA1S CVE: NA Reference: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=1075ee66a8c19bfa375b19c236fd6a22a867f138 -------------------------------- ida_alloc() and ida_free() should be preferred to the deprecated ida_simple_get() and ida_simple_remove(). This is less verbose. Note that the upper limit of ida_simple_get() is exclusive, but the one of ida_alloc_range() is inclusive. Sothis change allows one more device. MINORMASK is ((1U << MINORBITS) - 1), so allowing MINORMASK as a maximum value makes sense. It is also consistent with other "ida_.*MINORMASK" and "ida_*MINOR()" usages. Intel-SIG: commit 1075ee66a8c1 dmaengine: idxd: Remove usage of the deprecated ida_simple_xx() API. Incremental backporting patches for DSA/IAA on Intel Xeon platform. Signed-off-by:Christophe JAILLET <christophe.jaillet@wanadoo.fr> Reviewed-by:
Fenghua Yu <fenghua.yu@intel.com> Acked-by:
Lijun Pan <lijun.pan@intel.com> Link: https://lore.kernel.org/r/ac991f5f42112fa782a881d391d447529cbc4a23.1702967302.git.christophe.jaillet@wanadoo.fr Signed-off-by:
Vinod Koul <vkoul@kernel.org> Signed-off-by:
Xiaochen Shen <xiaochen.shen@intel.com>