1
1

Fix the OSHMEM request padding.

This patch fixes a missed case by 5b670a2 (PR #3634).

Signed-off-by: George Bosilca <bosilca@icl.utk.edu>
This commit is contained in:
George Bosilca 2017-06-01 18:30:02 -04:00
parent 1665d771a6
commit 037a85a782
No known key found for this signature in database
GPG Key ID: 09C926752C9F09B1

View File

@ -1,5 +1,4 @@
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/* -*- Mode: C; c-basic-offset:4 ; -*- */
/*
* Copyright (c) 2013 Mellanox Technologies, Inc.
* All rights reserved.
@ -138,7 +137,7 @@ typedef struct oshmem_request_t oshmem_request_t;
* See oshmem/communicator/communicator.h comments with struct oshmem_group_t
* for full explanation why we chose the following padding construct for predefines.
*/
#define PREDEFINED_REQUEST_PAD (sizeof(void*) * 32)
#define PREDEFINED_REQUEST_PAD 256
struct oshmem_predefined_request_t {
struct oshmem_request_t request;