History log of /external/ltp/testcases/kernel/mem/shmt/shmt06.c
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
dc5c423017485a9665e3b2025aee84c8c10a2055 09-Jan-2016 Khem Raj <raj.khem@gmail.com> Rename sigset variable to set

sigset API from signal.h is shadowed by this name conflict

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
829ac9d177bb1c713f1fe4266bdc44792b8c556d 08-Mar-2015 Mike Frysinger <vapier@gentoo.org> clean up some more old-style decls

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
aabb8340f63ed31afe995fd97795e542dc68b93c 04-Feb-2015 Cyril Hrubis <chrubis@suse.cz> Include usctest.h in test.h

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
526fdf8d8ea3b43b73de7cc25eb754f12702c8d2 04-Dec-2014 Cyril Hrubis <chrubis@suse.cz> Change tst_resm() followed by tst_exit() to tst_brkm()

Created with coccinelle patch:

@@
expression list L;
expression C != {TINFO, TPASS};
@@
- tst_resm
+ tst_brkm
(C,
+ NULL,
L);
- tst_exit();

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
d2db48030ce485af049d78a1690afc6df99bb689 24-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove useless shmat(...) casts.

Created with coccinelle patch:

@@
type T;
expression E1, E2, E3;
@@
-(T*)
shmat(E1, E2, E3)

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
371cf0a03162d0d1c2a9bb69a049a94b84312689 24-Sep-2014 Cyril Hrubis <chrubis@suse.cz> Remove returns that follows tst_exit()

Removes dead code that is never executed.

Created with coccinelle patch:

@@
expression E;
@@
tst_exit();
-return E;

Signed-off-by: Cyril Hrubis <chrubis@suse.cz>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
4548c6cf9bcdd96d8303caa4130ab638b61f8a30 19-Oct-2012 Wanlong Gao <gaowanlong@cn.fujitsu.com> Update FSF address

find . -type f -exec sed -i 's/675 Mass Ave, Cambridge, MA 02139, USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;
find . -type f -exec sed -i 's/59 Temple Place, Suite 330, Boston, MA 02111-1307 USA/51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA/g' {} \;

Signed-off-by: Wanlong Gao <gaowanlong@cn.fujitsu.com>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
ec6edca7aa42b6affd989ef91b5897f96795e40f 18-Oct-2012 Chris Dearman <chris@mips.com> Add missing newline at end of file

This is a scripted change done using the following command:

find . -type d -name .git -prune -o \
-type f \! -name \*\~ \! -name .\#\* \
\! -name \*.gz \! -name \*.pdf \! -name \*.patch -print0 | \
xargs -0 sed -i -e '$a\'

Signed-off-by: Chris Dearman <chris@mips.com>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
72521cf0741034f67dd17107453cda9a9819264c 18-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Fix more tests; remove more Tst_count externs.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
2c28215423293e443469a07ae7011135d058b671 16-Dec-2010 Garrett Cooper <yanegomi@gmail.com> Style and conformance changes.

1. Strip all leading space.
2. Move tst_exit() to main().
3. Remove tst_exit() from cleanup().
4. Remove cluebat comments.
5. Reduce some unnecessary whitespace.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
df3eb16e38c6a163b0a7367c885679eed6140964 29-Nov-2010 Garrett Cooper <yanegomi@gmail.com> Deal with a lot of annoying style nits.

Signed-off-by: Garrett Cooper <yanegomi@gmail.com>
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
ee2924af157992bcf9636c38dcdf3ac50c7ab978 19-May-2008 subrata_modak <subrata_modak> Roy Lee <roylee17@gmail.com> wrote:
Your patch looks good to me. It does what I'm intended but failed to do; eliminating explicit arch-dependent code without breaking logics. How about merge the scenario of shm06 into shm04, and then eliminate shm06? Modify shm04 to attach the same segment _twice_ to the child's address space. In this case, the first returned address should be the same as where the parent attaches its segment to while the second returned address should be different.
Helge Deller <deller@gmx.de> wrote:
Yes, this is probably the best idea. Alternatively, just leave shm04 as-is, and do the twice-mapping you mentioned above in shm06. This way we'd keep two simple tests.
Roy Lee <roylee17@gmail.com> wrote back:
Here's the patch for the shmt06 according to Helge's recommandation, please help review it.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
78b191285152e160a34122748e3c342b91a6d153 15-May-2008 subrata_modak <subrata_modak> This patch modifies testcases to attach their shm segment to addresses chosen by ststem instead of arch-dependent ones. I looked into the history of these testcases, but couldn't find the reason why they specified arch-dependent addresses in the first place. If it has something to do with the page coloring issue, SHMLBA should be in some manners instead of defining arch-dependent addresses. Tested successfully on ia64, ppc64, x86_64, s390x & i386 by Subrata Modak <subrata@linux.vnet.ibm.com>, and by Martin Habets <errandir_news@mph.eclipse.co.uk> on sparc32. Signed-off-by: Roy Lee <roylee17@gmail.com>.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
2e2af477bcc8f849937f4eb3c846c2a45418c0eb 13-Mar-2007 vapier <vapier> cleanup code
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
dc72339edc95f540faa2f3fdaad5813b4d4ef4fe 13-Mar-2007 vapier <vapier> Helge Deller writes: add support for hppa
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
047e56b566c4cf43abdd6aee0e6e09158366e74f 14-Jun-2004 robbiew <robbiew> Applied patch from Steve Hill and Gary Williams for MIPS.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
c866f1db5ea4f115eb8d4e07edd6cd11a8f65939 29-Jul-2003 robbiew <robbiew> Applied changes submitted by Ramesh Subramanian for the __ARM_ARCH_4T__ architecture.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
b084888cafdf09ea3bf4ba9de2cad603df5762b1 25-Mar-2003 robbiew <robbiew> Applied IA64 address fixes from Jacky Malcles.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
a70576c4834d89f937e46698fef4114736cce4d7 04-Mar-2003 robbiew <robbiew> Removed "extern int errno" lines and replaced with "#include <errno.h>"
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
95157a9fd5bda4e54c8bffec42b89d7d90daa134 08-Jan-2003 robbiew <robbiew> Applied patch created by Sundar and Dan Kegel.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c
38f7911c2ac2df13001dbe99459ebc0c973108f8 23-Dec-2002 robbiew <robbiew> Initial checkin of shared memory tests from SPIE suite.
/external/ltp/testcases/kernel/mem/shmt/shmt06.c