]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
staging: vchiq_core: Reduce the memdump size
authorPhil Elwell <phil@raspberrypi.org>
Tue, 17 Jan 2017 20:56:11 +0000 (20:56 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 Jan 2017 10:08:57 +0000 (11:08 +0100)
This reduces the memory dump size to a sufficient value of 16 bytes.

Signed-off-by: Phil Elwell <phil@raspberrypi.org>
Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vc04_services/interface/vchiq_arm/vchiq_core.c

index fcdfd662d3608a7b86c393df689382590ec94302..9867e647f7070e7200c63bd115ac545965bdc1bb 100644 (file)
@@ -920,7 +920,7 @@ queue_message(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T *service,
                                     VCHIQ_LOG_INFO))
                        vchiq_log_dump_mem("Sent", 0,
                                           header->data,
-                                          min((size_t)64,
+                                          min((size_t)16,
                                               (size_t)callback_result));
 
                spin_lock(&quota_spinlock);
@@ -1073,7 +1073,7 @@ queue_message_sync(VCHIQ_STATE_T *state, VCHIQ_SERVICE_T *service,
                                     VCHIQ_LOG_INFO))
                        vchiq_log_dump_mem("Sent", 0,
                                           header->data,
-                                          min((size_t)64,
+                                          min((size_t)16,
                                               (size_t)callback_result));
 
                VCHIQ_SERVICE_STATS_INC(service, ctrl_tx_count);
@@ -1734,7 +1734,7 @@ parse_rx_slots(VCHIQ_STATE_T *state)
                                remoteport, localport, size);
                        if (size > 0)
                                vchiq_log_dump_mem("Rcvd", 0, header->data,
-                                       min(64, size));
+                                       min(16, size));
                }
 
                if (((unsigned long)header & VCHIQ_SLOT_MASK) +
@@ -2191,7 +2191,7 @@ sync_func(void *v)
                                remoteport, localport, size);
                        if (size > 0)
                                vchiq_log_dump_mem("Rcvd", 0, header->data,
-                                       min(64, size));
+                                       min(16, size));
                }
 
                switch (type) {