Re: arch/mips (and arch/alpha) pmap.c dependency on SYSVSHM

2015-11-04 Thread Paul Goyette
On Thu, 5 Nov 2015, Christos Zoulas wrote: In article , Paul Goyette wrote: On Thu, 5 Nov 2015, Paul Goyette wrote: Following up on my earlier modularization of the SYSV IPC code, I have discovered that mips's pmap.c includes some SYSVSHM size in the calcs for the system map sizes. At line

Re: arch/mips (and arch/alpha) pmap.c dependency on SYSVSHM

2015-11-04 Thread Christos Zoulas
In article , Paul Goyette wrote: >On Thu, 5 Nov 2015, Paul Goyette wrote: > >> Following up on my earlier modularization of the SYSV IPC code, I have >> discovered that mips's pmap.c includes some SYSVSHM size in the calcs >> for the system map sizes. At line 516 in arch/mips/mips/pmap.c we have

arch/cesfic and SYSV IPC code

2015-11-04 Thread Paul Goyette
I notice that arch/cesfic/cesfic/machdep.c conditionally includes the shm.h, sem.h, and msg.h files if the corresponding SYSVxxx option is defined. But I can't seem to find anything in the code that actually depends on anything defined in those headers. Does anyone object if I simply remove line

Re: arch/mips (and arch/alpha) pmap.c dependency on SYSVSHM

2015-11-04 Thread Paul Goyette
On Thu, 5 Nov 2015, Paul Goyette wrote: Following up on my earlier modularization of the SYSV IPC code, I have discovered that mips's pmap.c includes some SYSVSHM size in the calcs for the system map sizes. At line 516 in arch/mips/mips/pmap.c we have #ifdef SYSVSHM Sysmapsize += shminf

arch/mips (and arch/alpha) pmap.c dependency on SYSVSHM

2015-11-04 Thread Paul Goyette
Following up on my earlier modularization of the SYSV IPC code, I have discovered that mips's pmap.c includes some SYSVSHM size in the calcs for the system map sizes. At line 516 in arch/mips/mips/pmap.c we have #ifdef SYSVSHM Sysmapsize += shminfo.shmall; #endif In arch/alpha/alpha/pma