diff options
Diffstat (limited to 'net/ipv4/ipconfig.c')
-rw-r--r-- | net/ipv4/ipconfig.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c index 3a6e1ec5e9ae..2b097752426b 100644 --- a/net/ipv4/ipconfig.c +++ b/net/ipv4/ipconfig.c | |||
@@ -1191,13 +1191,13 @@ static int __init ic_dynamic(void) | |||
1191 | (ic_proto_enabled & IC_USE_DHCP) && | 1191 | (ic_proto_enabled & IC_USE_DHCP) && |
1192 | ic_dhcp_msgtype != DHCPACK) { | 1192 | ic_dhcp_msgtype != DHCPACK) { |
1193 | ic_got_reply = 0; | 1193 | ic_got_reply = 0; |
1194 | printk(","); | 1194 | printk(KERN_CONT ","); |
1195 | continue; | 1195 | continue; |
1196 | } | 1196 | } |
1197 | #endif /* IPCONFIG_DHCP */ | 1197 | #endif /* IPCONFIG_DHCP */ |
1198 | 1198 | ||
1199 | if (ic_got_reply) { | 1199 | if (ic_got_reply) { |
1200 | printk(" OK\n"); | 1200 | printk(KERN_CONT " OK\n"); |
1201 | break; | 1201 | break; |
1202 | } | 1202 | } |
1203 | 1203 | ||
@@ -1205,7 +1205,7 @@ static int __init ic_dynamic(void) | |||
1205 | continue; | 1205 | continue; |
1206 | 1206 | ||
1207 | if (! --retries) { | 1207 | if (! --retries) { |
1208 | printk(" timed out!\n"); | 1208 | printk(KERN_CONT " timed out!\n"); |
1209 | break; | 1209 | break; |
1210 | } | 1210 | } |
1211 | 1211 | ||
@@ -1215,7 +1215,7 @@ static int __init ic_dynamic(void) | |||
1215 | if (timeout > CONF_TIMEOUT_MAX) | 1215 | if (timeout > CONF_TIMEOUT_MAX) |
1216 | timeout = CONF_TIMEOUT_MAX; | 1216 | timeout = CONF_TIMEOUT_MAX; |
1217 | 1217 | ||
1218 | printk("."); | 1218 | printk(KERN_CONT "."); |
1219 | } | 1219 | } |
1220 | 1220 | ||
1221 | #ifdef IPCONFIG_BOOTP | 1221 | #ifdef IPCONFIG_BOOTP |
@@ -1236,7 +1236,7 @@ static int __init ic_dynamic(void) | |||
1236 | ((ic_got_reply & IC_RARP) ? "RARP" | 1236 | ((ic_got_reply & IC_RARP) ? "RARP" |
1237 | : (ic_proto_enabled & IC_USE_DHCP) ? "DHCP" : "BOOTP"), | 1237 | : (ic_proto_enabled & IC_USE_DHCP) ? "DHCP" : "BOOTP"), |
1238 | &ic_servaddr); | 1238 | &ic_servaddr); |
1239 | printk("my address is %pI4\n", &ic_myaddr); | 1239 | printk(KERN_CONT "my address is %pI4\n", &ic_myaddr); |
1240 | 1240 | ||
1241 | return 0; | 1241 | return 0; |
1242 | } | 1242 | } |
@@ -1468,19 +1468,19 @@ static int __init ip_auto_config(void) | |||
1468 | /* | 1468 | /* |
1469 | * Clue in the operator. | 1469 | * Clue in the operator. |
1470 | */ | 1470 | */ |
1471 | printk("IP-Config: Complete:"); | 1471 | printk("IP-Config: Complete:\n"); |
1472 | printk("\n device=%s", ic_dev->name); | 1472 | printk(" device=%s", ic_dev->name); |
1473 | printk(", addr=%pI4", &ic_myaddr); | 1473 | printk(KERN_CONT ", addr=%pI4", &ic_myaddr); |
1474 | printk(", mask=%pI4", &ic_netmask); | 1474 | printk(KERN_CONT ", mask=%pI4", &ic_netmask); |
1475 | printk(", gw=%pI4", &ic_gateway); | 1475 | printk(KERN_CONT ", gw=%pI4", &ic_gateway); |
1476 | printk(",\n host=%s, domain=%s, nis-domain=%s", | 1476 | printk(KERN_CONT ",\n host=%s, domain=%s, nis-domain=%s", |
1477 | utsname()->nodename, ic_domain, utsname()->domainname); | 1477 | utsname()->nodename, ic_domain, utsname()->domainname); |
1478 | printk(",\n bootserver=%pI4", &ic_servaddr); | 1478 | printk(KERN_CONT ",\n bootserver=%pI4", &ic_servaddr); |
1479 | printk(", rootserver=%pI4", &root_server_addr); | 1479 | printk(KERN_CONT ", rootserver=%pI4", &root_server_addr); |
1480 | printk(", rootpath=%s", root_server_path); | 1480 | printk(KERN_CONT ", rootpath=%s", root_server_path); |
1481 | if (ic_dev_mtu) | 1481 | if (ic_dev_mtu) |
1482 | printk(", mtu=%d", ic_dev_mtu); | 1482 | printk(KERN_CONT ", mtu=%d", ic_dev_mtu); |
1483 | printk("\n"); | 1483 | printk(KERN_CONT "\n"); |
1484 | #endif /* !SILENT */ | 1484 | #endif /* !SILENT */ |
1485 | 1485 | ||
1486 | return 0; | 1486 | return 0; |