[Solved] ADF BC - Correlation of Refresh After Update checkbox with Returni

Hello all,
As per JDev (10.1.3.3.0) help system Refresh After Update option is used when there is Before Update trigger on a table.
As far as I know ADF BC framework is using Returing clause of an Update statement to implement Refresh After Update option.
First of all I created the following objects in Oracle DB 10.2.0.3.0:
CREATE TABLE TAB1
     ID          NUMBER          PRIMARY KEY,
     EDITED_AT     DATE,
     VALUE          VARCHAR2(64)
CREATE SEQUENCE S_TAB1
     INCREMENT BY 1
     START WITH 1;
CREATE TRIGGER T_TAB1_BIE
BEFORE INSERT OR UPDATE ON TAB1
FOR EACH ROW
BEGIN
     IF INSERTING THEN
          SELECT S_TAB1.NEXTVAL INTO :NEW.ID FROM DUAL;
     END IF;
     :NEW.EDITED_AT := SYSDATE;
END;
/Taking into consideration aforesaid I tried to do the following in SQL Plus:
SQL> insert into tab1(value) values('ddd');
1 row created.
SQL> commit;
Commit complete.
SQL>
SQL> select * from tab1;
        ID EDITED_AT           VALUE
         1 27.03.2008 17:01:24 ddd
SQL>
SQL> declare dt date; val varchar2(64);
  2  begin update tab1 set value = 'ddd' where id = 1 returning edited_at, value into dt, val;
  3  dbms_output.put_line('txt = ' || dt || ', ' || val);
  4  end;
  5  /
txt = 27.03.2008 17:01:24, ddd
PL/SQL procedure successfully completed.
SQL>
SQL> select * from tab1;
        ID EDITED_AT           VALUE
         1 27.03.2008 17:02:12 ddd
SQL>As it can be seen Returning clause of an Update statement does not return a new date, i.e. 27.03.2008 17:02:12, that was updated by the trigger, it returns an old one - 27.03.2008 17:01:24.
Should I change any parameter in Oracle DB or what can I do that ADF BC refreshes values generated by a Before Trigger?

Yerzhant,
Something is certainly not right. I don't have a 10.2.0.3.0 instance handy at the moment, but I tried verbatim your example in 11.1.0.6.0, and it works properly.
I am using this capability all over the place in ADF BC with no problems, database versions from 10gr1 to 11gr1.
Perhaps time to contact support.
John

Similar Messages

  • Regarding "Change Indicator + History Column + Refresh After Update"

    Hi,
    In our app, we are not using any separate column for change indicator and using LastUpdateDate as both Change Indicator and History Column(Modified On) as well.
    The problem is that when 'Refresh After Update' option is not selected for this column, then RowInconsistentException is throw on commit for multi user scenario, and when 'Refresh After Update' option is selected for this column, then exception is not thrown but value is also not updated. Here is the summary of observations:
    Settings for LastUpdateDate Column:
    Only Setting History Column (Modified on)
    Single User - Value Updated , no exception is thrown.
    Multi User - throws (oracle.jbo.RowInconsistentException) JBO-25014: Another user has changed the row with primary key oracle.jbo.Key[3 ]. for second user.
    History Column ( Modified on ) & Change Indicator property checked.
    Single User - Value Updated , no exception
    Multi User - throws (oracle.jbo.RowInconsistentException) JBO-25014: Another user has changed the row with primary key oracle.jbo.Key[3 ]. for second user.
    History Column ( Modified on ) & Change Indicator property checked & Refresh After Update option enabled.
    Single User - Value not updated, no exception thrown
    Multi User - Value not updated, no exception thrown
    What I want is that in multi user scenario, the value of LastUpdateColumn should be updated and no exception should also be thrown.
    Is this a bug in ADF Techstack or am I missing something?
    Thanks,
    Lalit.

    First and Second scenario are as expected.
    1) Only Setting History Column (Modified on)-> Last updated value will be updated when a user changes anything in that entity. But if another user tries to update the entity on top of a stale state then lost update detection is performed by ADF by comparing every attribute of entity against current values in database. So it will give error.
    2) History Column ( Modified on ) & Change Indicator property checked.
    Same thing will happen as in case of first scenario but this time detection of lost update will be more efficient as framework will check only that column for "lost update" detection for which change indicator is selected.
    But for the third one where you have selected the history column LastUpdatedDate as a change indicator with "Refresh On Update" selected, the behaviour is strange. I do not know why the last updated date is not updated after a commit. It does not throw any error also which it actually should. It is not detecting lost updates in this scenario. Probably because the only change indicator LastUpdatedDate is not changed.
    Regards,
    Harmeet

  • Bug at "refresh after update "

    I have an EO, PK (CODPEDV,CODPROD), with two (CANT_APROB, CANT_PROG) attributes defined as "Refresh after Update" in
    the Attribute Settings of the EO, as they are being corrected by a Trigger on Update in the DB. all that is Ok;
    but, What if my update involves the PK of the EO (CODPEDV)?, here's the result:
    Error Message: JBO-26041: Failed to post data to database during "Update":
    SQL Statement "BEGIN UPDATE ITEM_PEDIDO_VENTA ItemPedidoVenta SET CODPEDV=:1 WHERE CODPEDV=:2 AND CODPROD=:3;
    SELECT CANT_APROB, CANT_PROG INTO :4, :5 FROM ITEM_PEDIDO_VENTA ItemPedidoVenta WHERE CODPEDV=:6 AND CODPROD=:7; END;".
    As i suppose, the FrameWork is trying to bring the values back for the Attributes updated from the DB of a Row that
    no longer exists (CODPEDV,CODPROD) , because was changed by the first sentence (CODPEDV). I'm Wrong??
    Alex.
    (I've already got a workaround for my case)
    null

    Yes, you're right. And it sounds like you already have a workaround.
    Blaise

  • ADF Region not getting refreshed after Commit

    Hi everyone!
    I'm having some trouble with a region that is disturbing me for more than 2 weeks, its true guys, I tried everything!!
    My parent page is a normal ADF .jspx page that contains inside it a task-flow call. The first task-flow activity is a router, after sending a String
    to router it chooses the region activity that fits the page (in this example I always pass the same value, same String).
    After the router is called then it delegates to "ExecuteWithParams" method call before calling my final region that have its query executed with
    parameter set inside task-flow.
    The region is refreshed (refresh="ifNeeded") when I change row inside a table in ParentPage, all fine here.
    The problem is:
    - After any Commit (with navigation case or executable binding) is issued inside Region the region save its state and does not refresh anymore, even if task-flow parameters change.
    Already tried CacheResults="false" on iterator too.
    I'm using Jdeveloper 11.1.2.1.
    Thanks in advance!!

    Hi,
    so I think the shirt summary of your problem is that an ADF region doesn't refresh after it issued a commit. Sounds like a bug to me if this reproduces in a test case. Do you have a testcase based on the Oracle HR schema ? If so, send it my way in a zip file you rename to ".unzip". My mail address is in my OTN profile. Note that bugs I file are not visible to customers. So if you need to keep track of any state of the issue, you need to file a service request with support yourself.
    Frank

  • I'm using Iphone 5 .After updating it with the latest software i.e iOS 7.0.6 I'm not able to see the wats app and imsg on my notification until and unless i activate the "Show on Lock Screen" which was not same as in the earlier software version.Help plz

    I'm using Iphone 5 .After updating it with the latest software i.e iOS 7.0.6 I'm not able to see the wats app and imsg on my notification center when my phone is locked until and unless i activate the "Show on Lock Screen" under each application. which was not same as in the earlier software version.I dnt want my messages or watsapp msges to be displayed on home screen when locked but should be displayed on the notification center on lock condition.
    Please suggest a solution or @Apple please get a software release which can remove this bug .

    We aren't Apple, just users like you. Have you tried a reset? Hold down the home button along with the sleep/wake button until the screen goes black and you see the Apple, then let go. (No data loss)

  • HT1386 My phone can not activete to the server after updating it with ios 6.1.3 update

    Am using an apple 3g after updating it with ios 6.1.3 update it is failling to activete th the server.What should i do to have it work?

    John Bwalya wrote:
    Am using an apple 3g ...
    The iPhone 3G can Only update as far as iOS 4.2.1
    John Bwalya wrote:
    ... after updating it with ios 6.1.3 update it is failling to activete th the server....
    See this discussion.
    https://discussions.apple.com/message/21189708

  • HT6147 Problems after updating iPad2 with iOS7.0.6. Has anyone had this problem?

    Problems after updating iPad2 with iOS7.0.6. Has anyone had this problem? I lost my notes, calendar, songs, games+ more. I've tried everything to restore these, but it won't let me. HELP!!!!'

    Restore from iCloud Backup
    1. Settings>General>Reset>Erase all content and settings
    2. Tap Erase
    3. You'll see Apple logo and progress bar
    4. Hello
    5. Slide to set up
    6. Set language
    7. Set country
    8. Choose Wi-Fi network; enter Wi-Fi password
    9. (a) Use Location Service (b) Don't Use Location Service
    10. Select option
    11. (a) Setup as New iPad (b) Restore from iCloud Backup (c) Restore from iTune Backup
    12. Selected Restore from iCloud Backup
    13. Enter password for iCloud
    14. Agree to Terms and Conditions
    15. Setup Apple ID
    16. Select backup
    17. Restoring from iCloud
    18. Hello
    19. Restore Completed. Your iPad was restored successfully. There are just a few more steps to follow and then you're done!
    20. Continue
    21. Finish setting iCloud enter Password
    22. Updating iCloud settings
    23. Create a Passcode
    24. Welcome to iPad
    25. Get Started
    26. Restoring Apps and Media
    27. Enter Apple ID and Password
    28. Notice: Restore Incomplete, some items could not be downloaded from the Store. If they are on your computer, you can restore them by syncing with iTune
    29. Connect iPad to iTune to sync with computer
    30. Sync Music, Videos and Album Artwork

  • HT1766 after updating software with the device locked with passcode, the device not opening

    after updating software with the device locked with passcode, the device not opening

    Hello 7000q8,
    Enter in your Defualt Passcode then it should unlock, If not then contact Apple.
    ^Connor

  • Do I not get the "open file after publishing" checkbox with the trial version?

    I owned the Adobe Acrobat 8 Professional version on my pc, and recently bought a Mac. Do I not have the option to "Open file after publishing" checkbox with the trial version? Do I have to repurchase the whole program to get that?

    uninstall.
    download from prodesigntools.com.
    if you follow all 7 steps you can directly download a trial here:  New Adobe Lightroom 6 (CC) Direct Download Links – Free Trials | ProDesignTools
    and activate with your serial number.
    if you have a problem starting the download, you didn't follow all 7 steps, or your browser does not accept cookies. 
    the most common problem is caused by failing to meticulously follow steps 1,2 and/or 3 (which adds a cookie to your system enabling you to download the correct version from adobe.com). 
    failure to obtain that cookie results in an error page being displayed after clicking a link on prodesigntools.com or initiates the download of an incorrect (eg, current) version.

  • [SOLVED] impossible to boot (UEFI-grub2) after update

    Hi,
    problem : after update my computer refuses to boot. It doesn't get to the grub2 (actually 1.99) menu, it just says : no boot device found.
    My hardware : Asus M8Z77-V LX motherboard with 1 SSD.
    In the bios I disabled the bios legacy option to force it to boot with UEFI.
    As I hadn't moved to systemd yet, I waited to update a while(2 months).
    Last week I updated several pacakges by hand (kernel, vlc, ...) : All updates that according to me didn't involve with systemd.
    Then I rebooted and ... problem.
    I have tried a whole weekend to solve it by browsing through the wiki's but to no avail.
    I can boot with live-cd and access my SSD. All data is there. I can also chroot and do stuff.
    The SSD is partitionned in GPT as follows :
    sda1 : 1 gb fat 32
    sda2 : 20 gb ext4 root
    sda3 : 20 gb ext4 var
    sda4 : 79 gb ext4 home
    I did not do any update of my bios or changed anything on my hardware.
    It seems that my bios does not see my SSD as UEFI-bootable device anymore.
    When I installed Arch in June on my brand new computer I made a backup with redobackup (partclone) of a working installation.
    As a final ressort I put back the image I created then.
    But it doesn't work either!
    Then I updated my bios but same problem.
    My bios can see the fat 32 partition. I know this because to update the bios it looks for attached fat 32 storage and there is shows the partition .
    I there anywone who can point me in a good direction?
    Thanks a lot in advance.
    Last edited by BelgiumArcher (2013-01-08 16:20:43)

    I am sorry if I lost your confidence. I can't find any contradictory info in my post.
    The Arch Wiki-Grub 2 says that you need to boot in UEFI before you can (re)install grub2.
    As my live-cd won't boot in UEFI mode, the only option is that I make a live-usb stick and see if that one will boot in UEFI.
    But in the end it is still strange that a software update breaks my Asus UEFI-boot.
    I just found another unlucky guy with a simular problem. I'll try his solution tonight.
    http://superuser.com/questions/372962/w … ot-manager
    http://superuser.com/questions/376470/h … -grub2-efi
    I will try the live-usb method and report on it later.

  • [SOLVED] Intel DRI does not work after update

    Hi,
    after update of kernel from 3.5.6 to 3.6.5 and intel driver and deletion of dri2proto and mesa via pacman -Qdt (there are no more dependencies).. acceleration is no longer working
    $ export LIBGL_DEBUG=verbose; glxinfo | grep renderer
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/i965_dri.so
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/i965_dri.so
    libGL error: failed to open drm device: Permission denied
    libGL error: failed to load driver: i965
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/tls/swrast_dri.so
    libGL: OpenDriver: trying /usr/lib/xorg/modules/dri/swrast_dri.so
    libGL: Can't open configuration file /etc/drirc: No such file or directory.
    OpenGL renderer string: Gallium 0.4 on llvmpipe (LLVM 0x301)
    Configuration:
    SandyBridge I5, Intel HD 3000
    Can somebody help?
    Last edited by microcz (2012-11-07 06:15:23)

    OT: A simpler way to check if some packages are installed:
    $ pacman -Q intel-dri libgl foobar
    intel-dri 9.0-1
    libgl 9.0-1
    error: package 'foobar' was not found
    What's the output of 'groups'? Maybe you need to add yourself to 'video' group?
    http://www.linuxquestions.org/questions … nf-794105/
    http://www.mail-archive.com/dri-devel@l … 41313.html

  • [Solved] 'New' error messages during init after updating initscripts

    After updating to the latest initscripts, I got some error messages during init that I hadn't seen before.  They occurred during one of the UDev steps, and were caused by an attempt to load an IDE module despite the controller being disabled.  The controller shows up in Windows devmgr too, so I guess it's a failing of the mobo or BIOS.
    In any case, I downgraded and found that the errors were nothing new.  I'm just curious if the appearance of the errors during init was by design or a happy accident.
    Last edited by alphaniner (2011-08-01 17:07:30)

    alphaniner wrote:
    karol wrote:If you have the new (i.e. current) initscripts, you should be fine:
    http://projects.archlinux.org/initscrip … 328fbaf2e7
    http://projects.archlinux.org/initscrip … 42dfeca8c2
    I had never noticed the file before yesterday, actually. And I'm up-to-date, yet it's still full of 'em.
    You need to reboot.
    After you do, run
    tail /var/log/boot
    Mine isn't perfect, but I've already sent an e-mail to the dev (it's a matter of just a sed oneliner)
    [karol@black ~]$ tail /var/log/boot
    Tue Aug 2 05:03:01 2011: :: Setting Hostname: black ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:01 2011: :: Setting Locale: pl_PL.UTF-8 ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:01 2011: :: Setting Consoles to UTF-8 mode ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:01 2011: :: Loading Keyboard Map: pl ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:02 2011: :: Loading Console Font: Lat2-Terminus16 ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:02 2011: :: Saving dmesg Log ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:02 2011: INIT: Entering runlevel: 3
    Tue Aug 2 05:03:02 2011: :: Starting Syslog-NG ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:03 2011: :: Starting D-BUS system messagebus ^[[171G [BUSY] ^[[171G [DONE]
    Tue Aug 2 05:03:04 2011: :: Starting acpid ^[[171G [BKGD] :: Starting gpm ^[[171G [BKGD^[[0;1

  • [SOLVED] Unable to start vmware 9 after update

    Hello Folks,
    I got one weird issue after update,
    I tried to start vmware, failed as nothing happeded, no error message shown.
    Do you have any clues ?
    ┌─[root@tp]─[/tmp]─[0+4]─[99%=]
    └─# uname -a
    Linux tp 3.6.11-1-ARCH #1 SMP PREEMPT Tue Dec 18 08:57:15 CET 2012 x86_64 GNU/Linux
    ┌─[root@tp]─[/tmp]─[0+4]─[99%=]
    └─# vmware
    ┌─[✗]─[root@tp]─[/tmp]─[0+4]─[99%=]
    └─# vmware-modconfig --console --install-all
    Stopping VMware services:
       VMware Authentication Daemon                                        done
       VM communication interface socket family                            done
       Virtual machine communication interface                             done
       Virtual machine monitor                                             done
       Blocking file system                                                done
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/modconfig-CEZuvv/vmmon-only'
    /usr/bin/make -C /lib/modules/3.6.11-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-3.6.11-1-ARCH'
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/linux/hostif.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/linux/driver.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/memtrack.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/linux/driverLog.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/apic.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/vmx86.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/cpuid.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/task.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/hashFunc.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/comport.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/common/phystrack.o
      CC [M]  /tmp/modconfig-CEZuvv/vmmon-only/vmcore/moduleloop.o
      LD [M]  /tmp/modconfig-CEZuvv/vmmon-only/vmmon.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/modconfig-CEZuvv/vmmon-only/vmmon.mod.o
      LD [M]  /tmp/modconfig-CEZuvv/vmmon-only/vmmon.ko
    make[1]: Leaving directory `/usr/src/linux-3.6.11-1-ARCH'
    /usr/bin/make -C $PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= postbuild
    make[1]: Entering directory `/tmp/modconfig-CEZuvv/vmmon-only'
    make[1]: `postbuild' is up to date.
    make[1]: Leaving directory `/tmp/modconfig-CEZuvv/vmmon-only'
    cp -f vmmon.ko ./../vmmon.o
    make: Leaving directory `/tmp/modconfig-CEZuvv/vmmon-only'
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/modconfig-CEZuvv/vmnet-only'
    /usr/bin/make -C /lib/modules/3.6.11-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-3.6.11-1-ARCH'
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/driver.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/hub.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/netif.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/userif.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/bridge.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/filter.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/procfs.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/smac_compat.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/smac.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/vnetEvent.o
      CC [M]  /tmp/modconfig-CEZuvv/vmnet-only/vnetUserListener.o
      LD [M]  /tmp/modconfig-CEZuvv/vmnet-only/vmnet.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/modconfig-CEZuvv/vmnet-only/vmnet.mod.o
      LD [M]  /tmp/modconfig-CEZuvv/vmnet-only/vmnet.ko
    make[1]: Leaving directory `/usr/src/linux-3.6.11-1-ARCH'
    /usr/bin/make -C $PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= postbuild
    make[1]: Entering directory `/tmp/modconfig-CEZuvv/vmnet-only'
    make[1]: `postbuild' is up to date.
    make[1]: Leaving directory `/tmp/modconfig-CEZuvv/vmnet-only'
    cp -f vmnet.ko ./../vmnet.o
    make: Leaving directory `/tmp/modconfig-CEZuvv/vmnet-only'
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/modconfig-CEZuvv/vmblock-only'
    /usr/bin/make -C /lib/modules/3.6.11-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-3.6.11-1-ARCH'
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/filesystem.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/file.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/stubs.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/block.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/module.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/control.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/super.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/inode.o
      CC [M]  /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.o
    /tmp/modconfig-CEZuvv/vmblock-only/linux/inode.c:49:4: warning: initialization from incompatible pointer type [enabled by default]
    /tmp/modconfig-CEZuvv/vmblock-only/linux/inode.c:49:4: warning: (near initialization for ‘RootInodeOps.lookup’) [enabled by default]
    /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.c:38:4: warning: initialization from incompatible pointer type [enabled by default]
    /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.c:38:4: warning: (near initialization for ‘LinkDentryOps.d_revalidate’) [enabled by default]
    /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.c: In function ‘DentryOpRevalidate’:
    /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.c:104:7: warning: passing argument 2 of ‘actualDentry->d_op->d_revalidate’ makes integer from pointer without a cast [enabled by default]
    /tmp/modconfig-CEZuvv/vmblock-only/linux/dentry.c:104:7: note: expected ‘unsigned int’ but argument is of type ‘struct nameidata *’
      LD [M]  /tmp/modconfig-CEZuvv/vmblock-only/vmblock.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/modconfig-CEZuvv/vmblock-only/vmblock.mod.o
      LD [M]  /tmp/modconfig-CEZuvv/vmblock-only/vmblock.ko
    make[1]: Leaving directory `/usr/src/linux-3.6.11-1-ARCH'
    /usr/bin/make -C $PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= postbuild
    make[1]: Entering directory `/tmp/modconfig-CEZuvv/vmblock-only'
    make[1]: `postbuild' is up to date.
    make[1]: Leaving directory `/tmp/modconfig-CEZuvv/vmblock-only'
    cp -f vmblock.ko ./../vmblock.o
    make: Leaving directory `/tmp/modconfig-CEZuvv/vmblock-only'
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/modconfig-CEZuvv/vmci-only'
    /usr/bin/make -C /lib/modules/3.6.11-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-3.6.11-1-ARCH'
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/linux/driver.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/linux/vmciKernelIf.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciDriver.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciDatagram.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciResource.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciRoute.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciContext.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciHashtable.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciEvent.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciQueuePair.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciQPair.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/common/vmciDoorbell.o
      CC [M]  /tmp/modconfig-CEZuvv/vmci-only/driverLog.o
      LD [M]  /tmp/modconfig-CEZuvv/vmci-only/vmci.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/modconfig-CEZuvv/vmci-only/vmci.mod.o
      LD [M]  /tmp/modconfig-CEZuvv/vmci-only/vmci.ko
    make[1]: Leaving directory `/usr/src/linux-3.6.11-1-ARCH'
    /usr/bin/make -C $PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= postbuild
    make[1]: Entering directory `/tmp/modconfig-CEZuvv/vmci-only'
    make[1]: `postbuild' is up to date.
    make[1]: Leaving directory `/tmp/modconfig-CEZuvv/vmci-only'
    cp -f vmci.ko ./../vmci.o
    make: Leaving directory `/tmp/modconfig-CEZuvv/vmci-only'
    Using 2.6.x kernel build system.
    make: Entering directory `/tmp/modconfig-CEZuvv/vsock-only'
    /usr/bin/make -C /lib/modules/3.6.11-1-ARCH/build/include/.. SUBDIRS=$PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= modules
    make[1]: Entering directory `/usr/src/linux-3.6.11-1-ARCH'
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/af_vsock.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/vsockAddr.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/notifyQState.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/util.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/stats.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/linux/notify.o
      CC [M]  /tmp/modconfig-CEZuvv/vsock-only/driverLog.o
      LD [M]  /tmp/modconfig-CEZuvv/vsock-only/vsock.o
      Building modules, stage 2.
      MODPOST 1 modules
      CC      /tmp/modconfig-CEZuvv/vsock-only/vsock.mod.o
      LD [M]  /tmp/modconfig-CEZuvv/vsock-only/vsock.ko
    make[1]: Leaving directory `/usr/src/linux-3.6.11-1-ARCH'
    /usr/bin/make -C $PWD SRCROOT=$PWD/. \
      MODULEBUILDDIR= postbuild
    make[1]: Entering directory `/tmp/modconfig-CEZuvv/vsock-only'
    make[1]: `postbuild' is up to date.
    make[1]: Leaving directory `/tmp/modconfig-CEZuvv/vsock-only'
    cp -f vsock.ko ./../vsock.o
    make: Leaving directory `/tmp/modconfig-CEZuvv/vsock-only'
    Starting VMware services:
       Virtual machine monitor                                             done
       Virtual machine communication interface                             done
       VM communication interface socket family                            done
       Blocking file system                                                done
       Virtual ethernet                                                   failed
       VMware Authentication Daemon                                        done
    Unable to start services
    ┌─[✗]─[root@tp]─[/tmp]─[0+4]─[99%=]
    └─# vmware
    ┌─[✗]─[root@tp]─[/tmp]─[0+4]─[99%=]
    └─#
    Thanks in advance,
    Liao
    Last edited by liao (2013-01-11 14:10:29)

    after check vmware message under /tmp/vmware-$USER/vmware*.log, found one package is missing - libpng12, after installed it, everything looks good again

  • [SOLVED] Network Manager systemd unit fails after update

    EDIT: Reinstalling libnm-glib resolved this issue
    After updating to the latest version of NetworkManager (networkmanager-0.9.8.10-3), the systemd unit fails to start. It works fine after downgrading back to the previous version though (networkmanager-0.9.8.10-1). I'm not sure if this is a bug or an error on my end; since the previous package works I've just dowgraded for the time being.  For the update that doesn't work, here is the output of "systemctl status" and the systemd journal:
    >>sudo systemctl daemon-reload
    >> sudo systemctl status NetworkManager
    ● NetworkManager.service - Network Manager
    Loaded: loaded (/usr/lib/systemd/system/NetworkManager.service; enabled)
    Active: failed (Result: exit-code) since Wed 2014-06-11 15:28:25 EDT; 10s ago
    Process: 24073 ExecStart=/usr/bin/NetworkManager --no-daemon (code=exited, status=127)
    Main PID: 24073 (code=exited, status=127)
    Jun 11 15:28:25 kyle systemd[1]: NetworkManager.service: main process exited, code=exited, status=127/n/a
    Jun 11 15:28:25 kyle systemd[1]: Failed to start Network Manager.
    Jun 11 15:28:25 kyle systemd[1]: Unit NetworkManager.service entered failed state.
    >> journalctl -xn
    -- Logs begin at Tue 2014-06-10 12:47:19 EDT, end at Wed 2014-06-11 15:28:36 EDT. --
    Jun 11 15:28:25 kyle sudo[24070]: pam_unix(sudo:session): session opened for user root by kyle(uid=0)
    Jun 11 15:28:25 kyle systemd[1]: Starting Network Manager...
    -- Subject: Unit NetworkManager.service has begun with start-up
    -- Defined-By: systemd
    -- Support: [url]http://lists.freedesktop.org/mailman/listinfo/systemd-devel[/url]
    -- Unit NetworkManager.service has begun starting up.
    Jun 11 15:28:25 kyle systemd[1]: NetworkManager.service: main process exited, code=exited, status=127/n/a
    Jun 11 15:28:25 kyle systemd[1]: Failed to start Network Manager.
    -- Subject: Unit NetworkManager.service has failed
    -- Defined-By: systemd
    -- Support: [url]http://lists.freedesktop.org/mailman/listinfo/systemd-devel[/url]
    -- Unit NetworkManager.service has failed.
    -- The result is failed.
    Jun 11 15:28:25 kyle systemd[1]: Unit NetworkManager.service entered failed state.
    Jun 11 15:28:25 kyle sudo[24070]: pam_unix(sudo:session): session closed for user root
    Jun 11 15:28:28 kyle dbus[489]: [system] Failed to activate service 'org.freedesktop.nm_dispatcher': timed out
    Jun 11 15:28:36 kyle sudo[24075]: kyle : TTY=pts/2 ; PWD=/var/cache/pacman/pkg ; USER=root ; COMMAND=/usr/bin/systemctl status NetworkManager
    Jun 11 15:28:36 kyle sudo[24075]: pam_unix(sudo:session): session opened for user root by kyle(uid=0)
    Jun 11 15:28:36 kyle sudo[24075]: pam_unix(sudo:session): session closed for user root
    Last edited by T0k3n (2014-07-03 15:18:01)

    Check the changes:
    https://projects.archlinux.org/svntogit … e192881dc5
    https://projects.archlinux.org/svntogit … ee906b6c44
    When posting configs, code or command output, please use [ code ] tags, not [ quote ] tags https://bbs.archlinux.org/help.php#bbcode
    like this
    It makes the code more readable and - in case of longer listings - more convenient to scroll through.

  • [SOLVED] Only https sites are opening after update

    Today I updated whole system, but after update my browsers (firefox and konqueror) are not able to open http sites. I'm only able to open https sites. Everything was working fine before the update. But I'm able to ping both https and http sites:
    PING www.vpnbook.com (195.60.76.198) 56(84) bytes of data.
    64 bytes from www.vpnbook.com (195.60.76.198): icmp_seq=1 ttl=44 time=489 ms
    64 bytes from www.vpnbook.com (195.60.76.198): icmp_seq=2 ttl=44 time=519 ms
    64 bytes from 195.60.76.198: icmp_seq=3 ttl=44 time=499 ms
    --- www.vpnbook.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 2089ms
    rtt min/avg/max/mdev = 489.561/503.014/519.683/12.519 ms
    PING www.google.com (74.125.236.113) 56(84) bytes of data.
    64 bytes from bom03s01-in-f17.1e100.net (74.125.236.113): icmp_seq=1 ttl=50 time=340 ms
    64 bytes from bom03s01-in-f17.1e100.net (74.125.236.113): icmp_seq=2 ttl=50 time=290 ms
    64 bytes from bom03s01-in-f17.1e100.net (74.125.236.113): icmp_seq=3 ttl=50 time=280 ms
    --- www.google.com ping statistics ---
    3 packets transmitted, 3 received, 0% packet loss, time 1999ms
    rtt min/avg/max/mdev = 280.700/303.871/340.199/26.014 ms
    Last edited by ansh_kumar (2014-04-22 02:51:42)

    Wait I just installed traceroute from https mirror. Here is the output:
    traceroute to 173.194.36.40 (173.194.36.40), 30 hops max, 60 byte packets
    1 10.147.204.2 (10.147.204.2) 675.523 ms 675.639 ms 695.598 ms
    2 10.147.197.18 (10.147.197.18) 897.484 ms 875.211 ms 897.173 ms
    3 10.147.197.61 (10.147.197.61) 936.968 ms 916.711 ms 915.857 ms
    4 10.147.197.1 (10.147.197.1) 915.592 ms 936.590 ms 955.462 ms
    5 10.147.201.65 (10.147.201.65) 955.237 ms 955.521 ms 977.024 ms
    6 10.147.193.53 (10.147.193.53) 977.130 ms 119.199 ms 259.974 ms
    7 218.248.82.210 (218.248.82.210) 261.167 ms 218.248.82.206 (218.248.82.206) 261.732 ms 218.248.82.210 (218.248.82.210) 261.279 ms
    8 72.14.218.242 (72.14.218.242) 262.141 ms 261.980 ms 262.662 ms
    9 66.249.95.106 (66.249.95.106) 262.956 ms 262.671 ms 263.137 ms
    10 209.85.252.143 (209.85.252.143) 262.967 ms 263.329 ms 262.675 ms
    11 209.85.241.189 (209.85.241.189) 263.122 ms 263.349 ms 263.451 ms
    12 bom04s02-in-f8.1e100.net (173.194.36.40) 159.342 ms 159.542 ms 179.665 ms

Maybe you are looking for

  • Consuming external Web Service in portal application:Error URL.getProtocol

    Hello! I implemented a portal application which consums a external Web Service with NWDS 7.2. The Webservice access works fine when I test it in a Java-Main Class. If I deploy the application in a portal then I get the error: java.lang.NullPointerExc

  • Youtube randomly works but all other flash stuff is fine

    So, for a week, I have been getting a lot of errors on youtube. About 1/3 of the time a video works, sometimes after a refresh. Othertimes, I get an error or if I try to change quality to HD I get an error. So far, I haven't had this problem on my li

  • Wintel to MAC Connection -- Com1 to USB? What cable is Used?

    1. I am attempting to port data from a production machine with Com Ports into a Powerbook G4. This was previously done through the Com Ports to a Windows Box. I have migrated to a MAC and want to replicate the previous process. I am new the MAC but a

  • Supplier as Customer

    Hi All, We have a supplier who is also our customer. I just like to ask from Gurus out there, Is there ne specific set up we need to make in Either Payables or Receiveables. Please reply soon. Thanks

  • Fonts shown as installed by Font Book not available to applications

    I have several fonts that Font Book shows as installed that are not available to any of my applications, including Word and Quark Express. These fonts include Arial Bold, Arial Bold Italic, and Arial Italic, all of which I believe were installed as p