switch (*ip)
        {
        case SVC_POOL_AUTO:
-               return strlcpy(buf, "auto", 20);
+               return strlcpy(buf, "auto\n", 20);
        case SVC_POOL_GLOBAL:
-               return strlcpy(buf, "global", 20);
+               return strlcpy(buf, "global\n", 20);
        case SVC_POOL_PERCPU:
-               return strlcpy(buf, "percpu", 20);
+               return strlcpy(buf, "percpu\n", 20);
        case SVC_POOL_PERNODE:
-               return strlcpy(buf, "pernode", 20);
+               return strlcpy(buf, "pernode\n", 20);
        default:
-               return sprintf(buf, "%d", *ip);
+               return sprintf(buf, "%d\n", *ip);
        }
 }