Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1260089 > unrolled thread
| Started by | Jungseok Lee <jungseoklee85@gmail.com> |
|---|---|
| First post | 2015-11-01 08:50 +0100 |
| Last post | 2015-11-04 14:20 +0100 |
| Articles | 6 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Jungseok Lee <jungseoklee85@gmail.com> - 2015-11-01 08:50 +0100
Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Christoph Lameter <cl@linux.com> - 2015-11-02 17:10 +0100
Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Tejun Heo <tj@kernel.org> - 2015-11-02 20:20 +0100
Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Jungseok Lee <jungseoklee85@gmail.com> - 2015-11-03 15:20 +0100
Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Tejun Heo <tj@kernel.org> - 2015-11-03 23:10 +0100
Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition Jungseok Lee <jungseoklee85@gmail.com> - 2015-11-04 14:20 +0100
| From | Jungseok Lee <jungseoklee85@gmail.com> |
|---|---|
| Date | 2015-11-01 08:50 +0100 |
| Subject | [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition |
| Message-ID | <qpVyN-5qp-9@gated-at.bofh.it> |
As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not used any more. That is, no code refers to the definition. Signed-off-by: Jungseok Lee <jungseoklee85@gmail.com> --- include/linux/percpu.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/linux/percpu.h b/include/linux/percpu.h index caebf2a..4bc6daf 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h @@ -18,12 +18,6 @@ #define PERCPU_MODULE_RESERVE 0 #endif -#ifndef PERCPU_ENOUGH_ROOM -#define PERCPU_ENOUGH_ROOM \ - (ALIGN(__per_cpu_end - __per_cpu_start, SMP_CACHE_BYTES) + \ - PERCPU_MODULE_RESERVE) -#endif - /* minimum unit size, also is the maximum supported allocation size */ #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10) -- 2.5.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Christoph Lameter <cl@linux.com> |
|---|---|
| Date | 2015-11-02 17:10 +0100 |
| Subject | Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition |
| Message-ID | <qqpQf-7rc-19@gated-at.bofh.it> |
| In reply to | #1260089 |
On Sun, 1 Nov 2015, Jungseok Lee wrote: > As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not > used any more. That is, no code refers to the definition. Acked-by: Christoph Lameter <cl@linux.com> -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-11-02 20:20 +0100 |
| Subject | Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition |
| Message-ID | <qqsO6-JS-21@gated-at.bofh.it> |
| In reply to | #1260089 |
On Sun, Nov 01, 2015 at 07:46:15AM +0000, Jungseok Lee wrote: > As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not > used any more. That is, no code refers to the definition. > > Signed-off-by: Jungseok Lee <jungseoklee85@gmail.com> Applied to percpu/for-4.4. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Jungseok Lee <jungseoklee85@gmail.com> |
|---|---|
| Date | 2015-11-03 15:20 +0100 |
| Message-ID | <qqKBk-3MG-19@gated-at.bofh.it> |
| In reply to | #1260897 |
On Nov 3, 2015, at 4:10 AM, Tejun Heo wrote: Dear Tejun, > On Sun, Nov 01, 2015 at 07:46:15AM +0000, Jungseok Lee wrote: >> As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not >> used any more. That is, no code refers to the definition. >> >> Signed-off-by: Jungseok Lee <jungseoklee85@gmail.com> > > Applied to percpu/for-4.4. Thanks for taking care of this! Best Regards Jungseok Lee -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Tejun Heo <tj@kernel.org> |
|---|---|
| Date | 2015-11-03 23:10 +0100 |
| Subject | Re: [PATCH v6 1/3] percpu: remove PERCPU_ENOUGH_ROOM which is stale definition |
| Message-ID | <qqRWa-cZ-29@gated-at.bofh.it> |
| In reply to | #1261531 |
Hello, On Tue, Nov 03, 2015 at 11:12:51PM +0900, Jungseok Lee wrote: > On Nov 3, 2015, at 4:10 AM, Tejun Heo wrote: > > Dear Tejun, > > > On Sun, Nov 01, 2015 at 07:46:15AM +0000, Jungseok Lee wrote: > >> As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not > >> used any more. That is, no code refers to the definition. > >> > >> Signed-off-by: Jungseok Lee <jungseoklee85@gmail.com> > > > > Applied to percpu/for-4.4. > > Thanks for taking care of this! Can you please refresh the patch so that it also drops PERCPU_ENOUGH_ROOM definition from ia64? Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Jungseok Lee <jungseoklee85@gmail.com> |
|---|---|
| Date | 2015-11-04 14:20 +0100 |
| Message-ID | <qr68N-Ws-1@gated-at.bofh.it> |
| In reply to | #1261927 |
On Nov 4, 2015, at 7:07 AM, Tejun Heo wrote: > Hello, Hello, > On Tue, Nov 03, 2015 at 11:12:51PM +0900, Jungseok Lee wrote: >> On Nov 3, 2015, at 4:10 AM, Tejun Heo wrote: >> >> Dear Tejun, >> >>> On Sun, Nov 01, 2015 at 07:46:15AM +0000, Jungseok Lee wrote: >>>> As pure cleanup, this patch removes PERCPU_ENOUGH_ROOM which is not >>>> used any more. That is, no code refers to the definition. >>>> >>>> Signed-off-by: Jungseok Lee <jungseoklee85@gmail.com> >>> >>> Applied to percpu/for-4.4. >> >> Thanks for taking care of this! > > Can you please refresh the patch so that it also drops > PERCPU_ENOUGH_ROOM definition from ia64? Sure! I will do re-spin soon. Best Regards Jungseok Lee -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web