Sponsored Content
Operating Systems AIX How to add the attribute to odm if it contains negative value? Post 302820665 by Sachin1987 on Thursday 13th of June 2013 07:57:25 AM
Old 06-13-2013
How to add the attribute to odm if it contains negative value?

Hi All,

I am trying to add odm_wait attribute to CuAt programatically using putattr(&pCuAt).

I was able to add when the odm_wait has positive value [i.e 0]. But, I am facing issues when the odm_wait has negative value [i.e-1]

As per IBM, these are the odm_wait possible values
Code:
#define ODM_WAIT   -1  /* Wait forever                               */
#define ODM_NOWAIT  0  /* Return immediately if lock cannot be granted */

This is the piece of code from my program.

Code:
strcpy(pCuAt.name, hdiskname);
                        strcpy(pCuAt.attribute, "odm_wait");
                        sprintf(pCuAt.value,"%d", odm_wait);
                        strcpy(pCuAt.type, "R");
                        strcpy(pCuAt.generic, "DU");
                        strcpy(pCuAt.rep, "nr");
                        pCuAt.nls_index=120;
                        if (putattr(&pCuAt) == -1)
                                printf("error: could not add attribute <odm_wait> to odm \n");
                        else
				printf("Notice : %s odm_wait attribute is added successfully: \n", hdiskname);

My program is running without any issue in both the cases [-1,0] and also I am not getting any error when the odm_wait attribute is -1.
But, when odm_wait attribute is -1, it is not actually adding the attribute to ODM.

When I try to access that value it is not displaying any records.
Code:
bash-3.2# odmget -q"name= hdisk7 and attribute=odm_wait" CuAt
bash-3.2#
bash-3.2#

Do we need to follow any other way to add the attribute when it has negative value?

Please help me to figure out the issue.

Many Thanks

Last edited by jim mcnamara; 06-13-2013 at 10:14 AM.. Reason: Code tags, please...
 

10 More Discussions You Might Find Interesting

1. Linux

File attribute Help please

Could anyone help i have a question that i have a problem with for my home work it is, How do i change file permissions in a command line enviromet thanx (1 Reply)
Discussion started by: Cube3k
1 Replies

2. UNIX for Advanced & Expert Users

Clean an LV out of the ODM

I recently had a disk crash and was not able to clean the dump lv off the disk. Now trying to create new lvdump I am running into errors. My question is how do I remove the old lv out of the ODM? I have tried going through smit and also just rmlv and it cannot find the lv. Yet when I run lslv on... (0 Replies)
Discussion started by: Wamland
0 Replies

3. UNIX Benchmarks

ocs_vtsup: error locking odm database

Someone know something about this error ? We have 5.2 and HACMP Cluster. (1 Reply)
Discussion started by: hjara
1 Replies

4. AIX

Removing devices from ODM

I have replace a couple of hdisks in and old AIX 4 system. I have them assigned to the hdisk numbers previously in the system. When I don an lsvg -p vgname, i see them old devices by device number still come up as missing. I think they are still in the ODM,, how can I remove them? Thanks Mike (5 Replies)
Discussion started by: mhenryj
5 Replies

5. AIX

Script for Comparing VGDA and ODM

Hi there guys, if you have already this script as this will help us in determining of the two are consistent, and if it is not, which is the one correct. Hope you also have for this one.:) (1 Reply)
Discussion started by: sky_lark02
1 Replies

6. AIX

Odm & Lvm

Can i have BIG help on ODM and LVM??? I m new to AIX..... Devang (2 Replies)
Discussion started by: 10aix
2 Replies

7. AIX

remove default gateway on ODM

Hi All, I remove the default gateway by using a command line but I need also to remove it from ODM so that reboot will not trigger it back. How do I remove it from ODM of AIX 5.3? Thanks for any comment you may add. (4 Replies)
Discussion started by: itik
4 Replies

8. AIX

Problem with the ODM base

Hi, I gonna try to explain my problem. When I list my tty I have something like that: sa3 is the RAN where the tty are connected. Yesterday I tried to delete every tty from the RAN I had a problem with a tty which was not possible to delete with rmdev -dl, so I had to : - delete it... (0 Replies)
Discussion started by: Castelior
0 Replies

9. AIX

Removing object from ODM base

Hello! I did a big mistake and now I have to change the ODM base manually :wall: I had a server of test with 2 VG (rootvg and datavg). I had to test something on it with an other AIX version. So, to be sure to restore it, i did a mksysb before but I had completly forgotten the second vg and... (1 Reply)
Discussion started by: Castelior
1 Replies

10. AIX

AIX Migration issue with EMC ODM sets

Hi Experts , I want to start migrating our AIX 6.1 to AIX 7.1 . I am planning to use alt_disk_migration . Chris gibson has awesome documentation in the internet. However I am running into an issue with EMC odm filesets . So my current OS is AIX 6.1. and I have this : lslpp -l | grep EMC ... (7 Replies)
Discussion started by: JME2015
7 Replies
add object(1m)															    add object(1m)

NAME
add object - Adds a value to a modifiable, set-valued attribute (including application-defined attributes) of an object entry SYNOPSIS
cdscp add object object-name attribute-name = attribute-value ARGUMENTS
The full name of the object entry. The name of a particular attribute. Specify only one attribute at a time. See the cds_attributes file for the list of attributes and corresponding data types that your application uses. The value of a particular attribute. The value of an application-defined attribute is dependent on the type of attribute. DESCRIPTION
The add object command adds a value to a modifiable, set-valued attribute (including application-defined attributes) of an object entry. If the attribute does not exist, this command creates it. Usually, this task is performed through the client application. See the DCE Administration Guide for more information about attributes. Privilege Required You must have write permission to the object entry. NOTE
This command is replaced at Revision 1.1 by the dcecp command and may not be provided in future releases of DCE. EXAMPLE
To add the value ps to the attribute printcap of an object entry named /.:/subsys/deskprinter, read the cds_attributes file to verify that the attribute shown in the following display exists: OID LABEL SYNTAX 1.3.22.1.3.70 printcap char Enter the following command to assign the value ps to the attribute printcap: cdscp> add object /.:/subsys/deskprinter printcap = ps RELATED INFORMATION
Commands: create object(1m), delete object(1m), list object(1m), remove object(1m), set object(1m), show object(1m) Books: OSF DCE Administration Guide add object(1m)
All times are GMT -4. The time now is 01:30 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy