Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
cta
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Harbor Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dCache
cta
Commits
0f7aedc9
Commit
0f7aedc9
authored
14 years ago
by
Dennis Waldron
Committed by
Steven Murray
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fixed: #68084: Prevent of segment creation on disk only file classes
parent
75600bcf
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
mediachanger/castorrmc/common/serror.c
+2
-0
2 additions, 0 deletions
mediachanger/castorrmc/common/serror.c
mediachanger/castorrmc/h/serrno.h
+7
-5
7 additions, 5 deletions
mediachanger/castorrmc/h/serrno.h
mediachanger/castorrmc/h/serrno.man
+6
-0
6 additions, 0 deletions
mediachanger/castorrmc/h/serrno.man
with
15 additions
and
5 deletions
mediachanger/castorrmc/common/serror.c
+
2
−
0
View file @
0f7aedc9
...
...
@@ -206,6 +206,8 @@ char *sys_nserrlist[ENSMAXERR-ENSBASEOFF+2] =
"File has been overwritten, request ignored"
,
"Segment had been deleted"
,
"Is a link"
,
"File class does not allow a copy on tape"
,
"Too many copies on tape"
,
"BAD ERROR NUMBER"
};
...
...
This diff is collapsed.
Click to expand it.
mediachanger/castorrmc/h/serrno.h
+
7
−
5
View file @
0f7aedc9
...
...
@@ -210,11 +210,13 @@
* NS (Name Server) errors
*------------------------------------------------------------------------
*/
#define ENSNACT ENSBASEOFF+1
/* Name server not active */
#define ENSFILECHG ENSBASEOFF+2
/* File has been overwritten, request ignored */
#define ENSNOSEG ENSBASEOFF+3
/* Segment had been deleted */
#define ENSISLINK ENSBASEOFF+4
/* Is a link */
#define ENSMAXERR ENSBASEOFF+4
#define ENSNACT ENSBASEOFF+1
/* Name server not active */
#define ENSFILECHG ENSBASEOFF+2
/* File has been overwritten, request ignored */
#define ENSNOSEG ENSBASEOFF+3
/* Segment had been deleted */
#define ENSISLINK ENSBASEOFF+4
/* Is a link */
#define ENSCLASSNOSEGS ENSBASEOFF+5
/* File class does not allow a copy on tape */
#define ENSTOOMANYSEGS ENSBASEOFF+6
/* Too many copies on tape */
#define ENSMAXERR ENSBASEOFF+6
/*
*------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
mediachanger/castorrmc/h/serrno.man
+
6
−
0
View file @
0f7aedc9
...
...
@@ -457,6 +457,12 @@ The following error values are returned only by the name server package:
.TP
.B ENSISLINK
(1404) Is a link
.TP
.B ENSCLASSNOSEGS
(1405) File class does not allow a copy on tape
.TP
.B ENSTOOMANYSEGS
(1406) Too many copies on tape
.SH RFIO ERRORS
The following error values are returned only by the remote file I/O package:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment