alpha: implement setsysinfo(SSI_LMF) as a no-op

This allows running software using the Tru64 license manager.
For simplicity, no check for a valid license is done.  This
should not be seen as encouraging software piracy.

Signed-off-by: Mans Rullgard <mans@mansr.com>
Signed-off-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
Mans Rullgard
2011-08-26 18:52:14 +01:00
committed by Matt Turner
parent f9369910a6
commit 50744dee01
2 changed files with 4 additions and 0 deletions

View File

@@ -771,6 +771,9 @@ SYSCALL_DEFINE5(osf_setsysinfo, unsigned long, op, void __user *, buffer,
return 0;
}
case SSI_LMF:
return 0;
default:
break;
}