Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

[S390] drivers/s390: Add missing "space"

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>

authored by

Joe Perches and committed by
Martin Schwidefsky
ceb3dfba cfe7381c

+10 -10
+1 -1
drivers/s390/char/monwriter.c
··· 295 295 module_exit(mon_exit); 296 296 297 297 module_param_named(max_bufs, mon_max_bufs, int, 0644); 298 - MODULE_PARM_DESC(max_bufs, "Maximum number of sample monitor data buffers" 298 + MODULE_PARM_DESC(max_bufs, "Maximum number of sample monitor data buffers " 299 299 "that can be active at one time"); 300 300 301 301 MODULE_AUTHOR("Melissa Howland <Melissa.Howland@us.ibm.com>");
+1 -1
drivers/s390/char/vmlogrdr.c
··· 683 683 /* Register with iucv driver */ 684 684 ret = iucv_register(&vmlogrdr_iucv_handler, 1); 685 685 if (ret) { 686 - printk (KERN_ERR "vmlogrdr: failed to register with" 686 + printk (KERN_ERR "vmlogrdr: failed to register with " 687 687 "iucv driver\n"); 688 688 goto out; 689 689 }
+1 -1
drivers/s390/cio/chsc.c
··· 1042 1042 1043 1043 scsc_area = (void *)get_zeroed_page(GFP_KERNEL | GFP_DMA); 1044 1044 if (!scsc_area) { 1045 - CIO_MSG_EVENT(0, "Was not able to determine available" 1045 + CIO_MSG_EVENT(0, "Was not able to determine available " 1046 1046 "CHSCs due to no memory.\n"); 1047 1047 return -ENOMEM; 1048 1048 }
+1 -1
drivers/s390/net/claw.c
··· 2416 2416 privptr->p_buff_pages_perwrite); 2417 2417 #endif 2418 2418 if (p_buff==NULL) { 2419 - printk(KERN_INFO "%s:%s __get_free_pages" 2419 + printk(KERN_INFO "%s:%s __get_free_pages " 2420 2420 "for writes buf failed : get is for %d pages\n", 2421 2421 dev->name, 2422 2422 __FUNCTION__,
+1 -1
drivers/s390/net/lcs.c
··· 1115 1115 rc = lcs_send_setipm(card, ipm); 1116 1116 spin_lock_irqsave(&card->ipm_lock, flags); 1117 1117 if (rc) { 1118 - PRINT_INFO("Adding multicast address failed." 1118 + PRINT_INFO("Adding multicast address failed. " 1119 1119 "Table possibly full!\n"); 1120 1120 /* store ipm in failed list -> will be added 1121 1121 * to ipm_list again, so a retry will be done
+5 -5
drivers/s390/scsi/zfcp_fsf.c
··· 502 502 fsf_req->status |= ZFCP_STATUS_FSFREQ_ERROR; 503 503 break; 504 504 case FSF_SQ_NO_RECOM: 505 - ZFCP_LOG_NORMAL("bug: No recommendation could be given for a" 505 + ZFCP_LOG_NORMAL("bug: No recommendation could be given for a " 506 506 "problem on the adapter %s " 507 507 "Stopping all operations on this adapter. ", 508 508 zfcp_get_busid_by_adapter(fsf_req->adapter)); ··· 813 813 read_unlock_irqrestore(&zfcp_data.config_lock, flags); 814 814 815 815 if (!port || (port->d_id != (status_buffer->d_id & ZFCP_DID_MASK))) { 816 - ZFCP_LOG_NORMAL("bug: Reopen port indication received for" 816 + ZFCP_LOG_NORMAL("bug: Reopen port indication received for " 817 817 "nonexisting port with d_id 0x%06x on " 818 818 "adapter %s. Ignored.\n", 819 819 status_buffer->d_id & ZFCP_DID_MASK, ··· 2281 2281 &lock_flags, &fsf_req); 2282 2282 if (retval) { 2283 2283 ZFCP_LOG_INFO("error: Out of resources. Could not create an " 2284 - "exchange port data request for" 2284 + "exchange port data request for " 2285 2285 "the adapter %s.\n", 2286 2286 zfcp_get_busid_by_adapter(adapter)); 2287 2287 write_unlock_irqrestore(&adapter->request_queue.queue_lock, ··· 2340 2340 0, NULL, &lock_flags, &fsf_req); 2341 2341 if (retval) { 2342 2342 ZFCP_LOG_INFO("error: Out of resources. Could not create an " 2343 - "exchange port data request for" 2343 + "exchange port data request for " 2344 2344 "the adapter %s.\n", 2345 2345 zfcp_get_busid_by_adapter(adapter)); 2346 2346 write_unlock_irqrestore(&adapter->request_queue.queue_lock, ··· 4725 4725 /* allocate new FSF request */ 4726 4726 fsf_req = zfcp_fsf_req_alloc(pool, req_flags); 4727 4727 if (unlikely(NULL == fsf_req)) { 4728 - ZFCP_LOG_DEBUG("error: Could not put an FSF request into" 4728 + ZFCP_LOG_DEBUG("error: Could not put an FSF request into " 4729 4729 "the outbound (send) queue.\n"); 4730 4730 ret = -ENOMEM; 4731 4731 goto failed_fsf_req;