unsigned int bitmask_size);
 
 const char *trace_print_hex_seq(struct trace_seq *p,
-                               const unsigned char *buf, int len);
+                               const unsigned char *buf, int len,
+                               bool spacing);
 
 const char *trace_print_array_seq(struct trace_seq *p,
                                   const void *buf, int count,
 
 #endif
 
 #undef __print_hex
-#define __print_hex(buf, buf_len) trace_print_hex_seq(p, buf, buf_len)
+#define __print_hex(buf, buf_len)                                      \
+       trace_print_hex_seq(p, buf, buf_len, true)
+
+#undef __print_hex_str
+#define __print_hex_str(buf, buf_len)                                  \
+       trace_print_hex_seq(p, buf, buf_len, false)
 
 #undef __print_array
 #define __print_array(array, count, el_size)                           \
 #undef __print_flags
 #undef __print_symbolic
 #undef __print_hex
+#undef __print_hex_str
 #undef __get_dynamic_array
 #undef __get_dynamic_array_len
 #undef __get_str
 
 EXPORT_SYMBOL_GPL(trace_print_bitmask_seq);
 
 const char *
-trace_print_hex_seq(struct trace_seq *p, const unsigned char *buf, int buf_len)
+trace_print_hex_seq(struct trace_seq *p, const unsigned char *buf, int buf_len,
+                   bool spacing)
 {
        int i;
        const char *ret = trace_seq_buffer_ptr(p);
 
        for (i = 0; i < buf_len; i++)
-               trace_seq_printf(p, "%s%2.2x", i == 0 ? "" : " ", buf[i]);
-
+               trace_seq_printf(p, "%s%2.2x", !spacing || i == 0 ? "" : " ",
+                                buf[i]);
        trace_seq_putc(p, 0);
 
        return ret;