Re: 回复: 回复: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Christian König
@lists.freedesktop.org; linux-ker...@vger.kernel.org; Paneer Selvam, Arunpravin; intel-...@lists.freedesktop.org 主题: Re: 回复: [PATCH v4] drm: Optimise for continuous memory allocation Am 29.11.22 um 12:54 schrieb Pan, Xinhui: [AMD Official Use Only - General] comments inline

回复: 回复: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Pan, Xinhui
; Paneer Selvam, Arunpravin; intel-...@lists.freedesktop.org 主题: Re: 回复: [PATCH v4] drm: Optimise for continuous memory allocation Am 29.11.22 um 12:54 schrieb Pan, Xinhui: > [AMD Official Use Only - General] > > comments inline. > > > 发件人:

Re: 回复: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Christian König
@lists.freedesktop.org; linux-ker...@vger.kernel.org; Paneer Selvam, Arunpravin; intel-...@lists.freedesktop.org 主题: Re: [PATCH v4] drm: Optimise for continuous memory allocation Am 29.11.22 um 11:56 schrieb xinhui pan: Currently drm-buddy does not have full knowledge of continuous memory. Lets consider

回复: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Pan, Xinhui
; Paneer Selvam, Arunpravin; intel-...@lists.freedesktop.org 主题: Re: [PATCH v4] drm: Optimise for continuous memory allocation Am 29.11.22 um 11:56 schrieb xinhui pan: > Currently drm-buddy does not have full knowledge of continuous memory. > > Lets consider scenario below. > o

Re: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Christian König
Am 29.11.22 um 11:56 schrieb xinhui pan: Currently drm-buddy does not have full knowledge of continuous memory. Lets consider scenario below. order 1:L R order 0: LL LR RL RR for order 1 allocation, it can offer L or R or LR+RL. For now, we only implement L or R

回复: [PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread Pan, Xinhui
lvam, Arunpravin; intel-...@lists.freedesktop.org; Pan, Xinhui 主题: [PATCH v4] drm: Optimise for continuous memory allocation Currently drm-buddy does not have full knowledge of continuous memory. Lets consider scenario below. order 1:L R order 0: LL LR RL RR for order 1 allocat

[PATCH v4] drm: Optimise for continuous memory allocation

2022-11-29 Thread xinhui pan
Currently drm-buddy does not have full knowledge of continuous memory. Lets consider scenario below. order 1:L R order 0: LL LR RL RR for order 1 allocation, it can offer L or R or LR+RL. For now, we only implement L or R case for continuous memory allocation. So t